diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2010-08-19 23:48:25 -0400 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2010-08-19 23:48:25 -0400 |
commit | cc9a1952d968c3c83e8d331cb005468848c936e1 (patch) | |
tree | 85c63ef770be459fa9a567bf16ffdb9eca0f285f /phpBB/includes/functions_posting.php | |
parent | 25c579c00d25356afead09f13031e69e22f91324 (diff) | |
download | forums-cc9a1952d968c3c83e8d331cb005468848c936e1.tar forums-cc9a1952d968c3c83e8d331cb005468848c936e1.tar.gz forums-cc9a1952d968c3c83e8d331cb005468848c936e1.tar.bz2 forums-cc9a1952d968c3c83e8d331cb005468848c936e1.tar.xz forums-cc9a1952d968c3c83e8d331cb005468848c936e1.zip |
[ticket/9635] Useless parameter $data['post_time'] in function submit_post.
PHPBB3-9635
Diffstat (limited to 'phpBB/includes/functions_posting.php')
-rw-r--r-- | phpBB/includes/functions_posting.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_posting.php b/phpBB/includes/functions_posting.php index f6f90575d4..5e25648eb8 100644 --- a/phpBB/includes/functions_posting.php +++ b/phpBB/includes/functions_posting.php @@ -2537,7 +2537,7 @@ function submit_post($mode, $subject, $username, $topic_type, &$poll, &$data, $u if ($mode == 'post' || $mode == 'reply' || $mode == 'quote') { // Mark this topic as posted to - markread('post', $data['forum_id'], $data['topic_id'], $data['post_time']); + markread('post', $data['forum_id'], $data['topic_id']); } // Mark this topic as read |