1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-06 08:47:45 +02:00

[ticket/9531] BBCode-less quotes fallback-option is missing "Author wrote:" line when quoting from topic-review.

PHPBB3-9531
This commit is contained in:
Joas Schilling
2010-04-11 01:30:56 +02:00
committed by Nils Adermann
parent 03d50a2e83
commit fe9c5019b6
6 changed files with 7 additions and 6 deletions

View File

@@ -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";
}
}