diff options
author | kasimi <mail@kasimi.net> | 2018-07-07 21:25:29 +0200 |
---|---|---|
committer | kasimi <mail@kasimi.net> | 2018-07-07 21:25:43 +0200 |
commit | 245f4df47c0d33ef8fe83bc5fd049a1afda79bb1 (patch) | |
tree | 00b15691c7118f20bc9f72c03b8d9f9471996b1e /phpBB | |
parent | 517c601482b9400a6b6d72c04791c534e0170622 (diff) | |
download | forums-245f4df47c0d33ef8fe83bc5fd049a1afda79bb1.tar forums-245f4df47c0d33ef8fe83bc5fd049a1afda79bb1.tar.gz forums-245f4df47c0d33ef8fe83bc5fd049a1afda79bb1.tar.bz2 forums-245f4df47c0d33ef8fe83bc5fd049a1afda79bb1.tar.xz forums-245f4df47c0d33ef8fe83bc5fd049a1afda79bb1.zip |
[ticket/15637] Preserve line breaks in event descriptions
PHPBB3-15637
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/phpbb/event/php_exporter.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/event/php_exporter.php b/phpBB/phpbb/event/php_exporter.php index eae6a7bf28..15dd13190e 100644 --- a/phpBB/phpbb/event/php_exporter.php +++ b/phpBB/phpbb/event/php_exporter.php @@ -281,7 +281,7 @@ class php_exporter $description_line_num++; } - $description = trim(implode(' ', $description_lines)); + $description = trim(implode('<br/>', $description_lines)); if (isset($this->events[$this->current_event])) { |