diff options
author | the_systech <the_systech@users.sourceforge.net> | 2002-03-19 19:37:30 +0000 |
---|---|---|
committer | the_systech <the_systech@users.sourceforge.net> | 2002-03-19 19:37:30 +0000 |
commit | 14402abc179322079c5e3f8323aa7f222cd46f08 (patch) | |
tree | ebbb1293f14718bf9f89d38910999003b2d12b24 | |
parent | 4ad31e50fc50188c0f0a8a3c4df777a7878d337c (diff) | |
download | forums-14402abc179322079c5e3f8323aa7f222cd46f08.tar forums-14402abc179322079c5e3f8323aa7f222cd46f08.tar.gz forums-14402abc179322079c5e3f8323aa7f222cd46f08.tar.bz2 forums-14402abc179322079c5e3f8323aa7f222cd46f08.tar.xz forums-14402abc179322079c5e3f8323aa7f222cd46f08.zip |
Fix for bug #521935 (extra fields in db after upgrade)
git-svn-id: file:///svn/phpbb/trunk@2356 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r-- | phpBB/upgrade.php | 3 |
1 files changed, 2 insertions, 1 deletions
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) ) |