From 14402abc179322079c5e3f8323aa7f222cd46f08 Mon Sep 17 00:00:00 2001 From: the_systech Date: Tue, 19 Mar 2002 19:37:30 +0000 Subject: [PATCH] Fix for bug #521935 (extra fields in db after upgrade) git-svn-id: file:///svn/phpbb/trunk@2356 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/upgrade.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/phpBB/upgrade.php b/phpBB/upgrade.php index bda1c2d30b..e8af359d97 100644 --- a/phpBB/upgrade.php +++ b/phpBB/upgrade.php @@ -1831,7 +1831,8 @@ if ( !empty($next) ) FORUMS_TABLE => array("forum_access", "forum_moderator", "forum_type"), PRIVMSGS_TABLE => array("msg_text"), RANKS_TABLE => array("rank_max"), - SMILIES_TABLE => array("emotion") + SMILIES_TABLE => array("emotion"), + TOPICS_TABLE => array("topic_notify") ); while( list($table, $field_data) = each($fields) )