aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_posting.php
diff options
context:
space:
mode:
authorNathaniel Guse <nathaniel.guse@gmail.com>2012-09-20 10:40:18 -0500
committerNathaniel Guse <nathaniel.guse@gmail.com>2012-09-20 10:40:18 -0500
commit3897a442f7fe0107cf71adc02af999b496bfebaf (patch)
tree6940425c3bcb613e993640ea554354053f128dea /phpBB/includes/functions_posting.php
parent98731b127748af4673fdee92db2e139e84fd4d4b (diff)
downloadforums-3897a442f7fe0107cf71adc02af999b496bfebaf.tar
forums-3897a442f7fe0107cf71adc02af999b496bfebaf.tar.gz
forums-3897a442f7fe0107cf71adc02af999b496bfebaf.tar.bz2
forums-3897a442f7fe0107cf71adc02af999b496bfebaf.tar.xz
forums-3897a442f7fe0107cf71adc02af999b496bfebaf.zip
[ticket/11103] Bug fixing
PHPBB3-11103
Diffstat (limited to 'phpBB/includes/functions_posting.php')
-rw-r--r--phpBB/includes/functions_posting.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/phpBB/includes/functions_posting.php b/phpBB/includes/functions_posting.php
index 4dd840ad53..4ae5989fed 100644
--- a/phpBB/includes/functions_posting.php
+++ b/phpBB/includes/functions_posting.php
@@ -2229,6 +2229,7 @@ function submit_post($mode, $subject, $username, $topic_type, &$poll, &$data, $u
$phpbb_notifications->add_notifications(array('topic', 'quote'), array_merge($data, array(
'post_username' => $username,
'poster_id' => (int) $user->data['user_id'],
+ 'post_time' => $current_time,
)));
break;
@@ -2238,6 +2239,7 @@ function submit_post($mode, $subject, $username, $topic_type, &$poll, &$data, $u
'post_username' => $username,
'poster_id' => (int) $user->data['user_id'],
'post_text' => $data['message'],
+ 'post_time' => $current_time,
)));
break;
@@ -2265,6 +2267,7 @@ function submit_post($mode, $subject, $username, $topic_type, &$poll, &$data, $u
$phpbb_notifications->add_notifications(array('topic_in_queue'), array_merge($data, array(
'post_username' => $username,
'poster_id' => (int) $user->data['user_id'],
+ 'post_time' => $current_time,
)));
break;
@@ -2273,6 +2276,7 @@ function submit_post($mode, $subject, $username, $topic_type, &$poll, &$data, $u
$phpbb_notifications->add_notifications(array('post_in_queue'), array_merge($data, array(
'post_username' => $username,
'poster_id' => (int) $user->data['user_id'],
+ 'post_time' => $current_time,
)));
break;