1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 22:10:45 +02: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

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]))
{