diff options
author | Henry Sudhof <kellanved@phpbb.com> | 2007-05-09 11:14:29 +0000 |
---|---|---|
committer | Henry Sudhof <kellanved@phpbb.com> | 2007-05-09 11:14:29 +0000 |
commit | 61da93639bb1727ec72af748d24041584bf9fc61 (patch) | |
tree | 452a4665877b4388ff4c61d507882a2a2f7113c2 /phpBB/includes/functions_posting.php | |
parent | 3eedb3fb470d7533209987db06febfc98c2b0e1d (diff) | |
download | forums-61da93639bb1727ec72af748d24041584bf9fc61.tar forums-61da93639bb1727ec72af748d24041584bf9fc61.tar.gz forums-61da93639bb1727ec72af748d24041584bf9fc61.tar.bz2 forums-61da93639bb1727ec72af748d24041584bf9fc61.tar.xz forums-61da93639bb1727ec72af748d24041584bf9fc61.zip |
#10679
git-svn-id: file:///svn/phpbb/trunk@7510 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 e7615b8563..f38bb7dfe3 100644 --- a/phpBB/includes/functions_posting.php +++ b/phpBB/includes/functions_posting.php @@ -2033,7 +2033,7 @@ function submit_post($mode, $subject, $username, $topic_type, &$poll, &$data, $u $sql_data[TOPICS_TABLE]['stat'][] = "topic_last_poster_name = '" . $db->sql_escape((!$user->data['is_registered'] && $username) ? $username : (($user->data['user_id'] != ANONYMOUS) ? $user->data['username'] : '')) . "'"; $sql_data[TOPICS_TABLE]['stat'][] = "topic_last_poster_colour = '" . (($user->data['user_id'] != ANONYMOUS) ? $db->sql_escape($user->data['user_colour']) : '') . "'"; $sql_data[TOPICS_TABLE]['stat'][] = "topic_last_post_subject = '" . $db->sql_escape($subject) . "'"; - $sql_data[FORUMS_TABLE]['stat'][] = 'topic_last_post_time = ' . (int) $current_time; + $sql_data[FORUMS_TABLE]['stat'][] = 'forum_last_post_time = ' . (int) $current_time; } else if ($post_mode == 'edit_last_post') { |