mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-09 10:16:36 +02:00
[ticket/10620] Implemented quote improvements
PHPBB3-10620
This commit is contained in:
@@ -1605,7 +1605,12 @@ if ($generate_quote)
|
||||
{
|
||||
$message_parser->message = $phpbb_container->get('text_formatter.utils')->generate_quote(
|
||||
censor_text($message_parser->message),
|
||||
array('author' => $post_data['quote_username'])
|
||||
array(
|
||||
'author' => $post_data['quote_username'],
|
||||
'post_id' => $post_data['post_id'],
|
||||
'time' => $post_data['post_time'],
|
||||
'user_id' => $post_data['poster_id'],
|
||||
)
|
||||
);
|
||||
$message_parser->message .= "\n\n";
|
||||
}
|
||||
|
Reference in New Issue
Block a user