diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-05-24 00:30:53 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-05-24 00:30:53 +0000 |
commit | f381c0d3ef39a078a21b727a07caeeeef2745fa4 (patch) | |
tree | f9300d4118baca17de470143ad6ac722b62a767d /phpBB/includes/functions_posting.php | |
parent | bea13814e7831d3a5f19709e598dbefbae6e222d (diff) | |
download | forums-f381c0d3ef39a078a21b727a07caeeeef2745fa4.tar forums-f381c0d3ef39a078a21b727a07caeeeef2745fa4.tar.gz forums-f381c0d3ef39a078a21b727a07caeeeef2745fa4.tar.bz2 forums-f381c0d3ef39a078a21b727a07caeeeef2745fa4.tar.xz forums-f381c0d3ef39a078a21b727a07caeeeef2745fa4.zip |
more fun with cookies
git-svn-id: file:///svn/phpbb/trunk@4054 89ea8834-ac86-4346-8a33-228a782c2dd0
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 7ae621ed6e..24284032ea 100644 --- a/phpBB/includes/functions_posting.php +++ b/phpBB/includes/functions_posting.php @@ -1173,7 +1173,7 @@ function submit_post($mode, $message, $subject, $username, $topic_type, $bbcode_ // Mark this topic as read and posted to. $mark_mode = ($mode == 'post' || $mode == 'reply' || $mode == 'quote') ? 'post' : 'topic'; - markread($mark_mode, $post_data['forum_id'], $post_data['topic_id'], $post_data['post_id']); + markread($mark_mode, $post_data['forum_id'], $post_data['topic_id'], $post_data['post_time']); $db->sql_transaction('commit'); |