aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--phpBB/posting.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/posting.php b/phpBB/posting.php
index 9f7fefd81c..14ee550ac9 100644
--- a/phpBB/posting.php
+++ b/phpBB/posting.php
@@ -1193,7 +1193,8 @@ if ($mode == 'quote' && !$submit && !$preview && !$refresh)
}
else
{
- $message = '> ' . utf8_wordwrap(censor_text(trim($message_parser->message)), 75, "\n> ");
+ $message = '> ' . utf8_wordwrap(censor_text(trim($message_parser->message)), 75, "\n");
+ $message = str_replace("\n", "\n> ", $message);
$message_parser->message = $post_data['quote_username'] . " " . $user->lang['WROTE'] . " :\n" . $message . "\n";
}
}