aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/posting.php
diff options
context:
space:
mode:
authorJoshyPHP <s9e.dev@gmail.com>2015-06-16 08:16:56 +0200
committerJoshyPHP <s9e.dev@gmail.com>2015-06-25 03:11:55 +0200
commitf02cc27014c27acaf44b27066959426db27b3493 (patch)
treebf8093cc0a8fe6a113719fa1eeaf27484e3da79f /phpBB/posting.php
parent8747c7a2c17e2f5408f528f5213a3e056aefd54e (diff)
downloadforums-f02cc27014c27acaf44b27066959426db27b3493.tar
forums-f02cc27014c27acaf44b27066959426db27b3493.tar.gz
forums-f02cc27014c27acaf44b27066959426db27b3493.tar.bz2
forums-f02cc27014c27acaf44b27066959426db27b3493.tar.xz
forums-f02cc27014c27acaf44b27066959426db27b3493.zip
[ticket/10620] Implemented quote improvements
PHPBB3-10620
Diffstat (limited to 'phpBB/posting.php')
-rw-r--r--phpBB/posting.php7
1 files changed, 6 insertions, 1 deletions
diff --git a/phpBB/posting.php b/phpBB/posting.php
index 2f9beefcf9..327004b1bf 100644
--- a/phpBB/posting.php
+++ b/phpBB/posting.php
@@ -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";
}