diff options
author | Tristan Darricau <tristan.darricau@sensiolabs.com> | 2015-06-24 16:34:53 +0200 |
---|---|---|
committer | Tristan Darricau <tristan.darricau@sensiolabs.com> | 2015-06-24 16:34:53 +0200 |
commit | d430acb5680ddfd249daf1bd41a268ed47a6823e (patch) | |
tree | fa9d056d31b7237843842f982a2aaf300f4d1cd7 /phpBB/posting.php | |
parent | c1b16930989774051fbc84c8e5634dd83aae7835 (diff) | |
parent | 433021f429f22dfd6d5dfc16c11195b19a488161 (diff) | |
download | forums-d430acb5680ddfd249daf1bd41a268ed47a6823e.tar forums-d430acb5680ddfd249daf1bd41a268ed47a6823e.tar.gz forums-d430acb5680ddfd249daf1bd41a268ed47a6823e.tar.bz2 forums-d430acb5680ddfd249daf1bd41a268ed47a6823e.tar.xz forums-d430acb5680ddfd249daf1bd41a268ed47a6823e.zip |
Merge pull request #3669 from s9e/ticket/13901
[ticket/13901] Add more whitespace to long quotes for readability
Diffstat (limited to 'phpBB/posting.php')
-rw-r--r-- | phpBB/posting.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/posting.php b/phpBB/posting.php index 48c7c36690..2f9beefcf9 100644 --- a/phpBB/posting.php +++ b/phpBB/posting.php @@ -1604,10 +1604,10 @@ if ($generate_quote) if ($config['allow_bbcode']) { $message_parser->message = $phpbb_container->get('text_formatter.utils')->generate_quote( - censor_text(trim($message_parser->message)), + censor_text($message_parser->message), array('author' => $post_data['quote_username']) ); - $message_parser->message .= "\n"; + $message_parser->message .= "\n\n"; } else { |