mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
Fix for bug #521935 (extra fields in db after upgrade)
git-svn-id: file:///svn/phpbb/trunk@2356 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
4ad31e50fc
commit
14402abc17
1 changed files with 2 additions and 1 deletions
|
@ -1831,7 +1831,8 @@ if ( !empty($next) )
|
||||||
FORUMS_TABLE => array("forum_access", "forum_moderator", "forum_type"),
|
FORUMS_TABLE => array("forum_access", "forum_moderator", "forum_type"),
|
||||||
PRIVMSGS_TABLE => array("msg_text"),
|
PRIVMSGS_TABLE => array("msg_text"),
|
||||||
RANKS_TABLE => array("rank_max"),
|
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) )
|
while( list($table, $field_data) = each($fields) )
|
||||||
|
|
Loading…
Add table
Reference in a new issue