1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-03-24 09:30:34 +01:00

[ticket/15637] Remove trailing space from description

PHPBB3-15637
This commit is contained in:
kasimi 2018-07-07 20:12:35 +02:00
parent 1c8570d0f5
commit 83a8280554
No known key found for this signature in database
GPG Key ID: 3163AB573241193A

View File

@ -281,7 +281,7 @@ class php_exporter
$description_line_num++;
}
$description = implode(' ', $description_lines);
$description = trim(implode(' ', $description_lines));
if (isset($this->events[$this->current_event]))
{