diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2010-04-11 01:30:56 +0200 |
---|---|---|
committer | Nils Adermann <naderman@naderman.de> | 2010-05-16 19:13:22 +0200 |
commit | fe9c5019b672f26453df55c1a7f6bf876f56da3d (patch) | |
tree | feff19ef51c3bc530793a932e9951c0818370582 /phpBB/posting.php | |
parent | 03d50a2e83cc631779a7574acd4db8b77f29d547 (diff) | |
download | forums-fe9c5019b672f26453df55c1a7f6bf876f56da3d.tar forums-fe9c5019b672f26453df55c1a7f6bf876f56da3d.tar.gz forums-fe9c5019b672f26453df55c1a7f6bf876f56da3d.tar.bz2 forums-fe9c5019b672f26453df55c1a7f6bf876f56da3d.tar.xz forums-fe9c5019b672f26453df55c1a7f6bf876f56da3d.zip |
[ticket/9531] BBCode-less quotes fallback-option is missing "Author wrote:" line when quoting from topic-review.
PHPBB3-9531
Diffstat (limited to 'phpBB/posting.php')
-rw-r--r-- | phpBB/posting.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/posting.php b/phpBB/posting.php index 5f27b61aae..2948d7a764 100644 --- a/phpBB/posting.php +++ b/phpBB/posting.php @@ -1258,7 +1258,7 @@ if ($mode == 'quote' && !$submit && !$preview && !$refresh) $message = $quote_string . $message; $message = str_replace("\n", "\n" . $quote_string, $message); - $message_parser->message = $post_data['quote_username'] . " " . $user->lang['WROTE'] . " :\n" . $message . "\n"; + $message_parser->message = $post_data['quote_username'] . " " . $user->lang['WROTE'] . ":\n" . $message . "\n"; } } |