diff options
author | James Atkinson <thefinn@users.sourceforge.net> | 2001-03-04 01:27:58 +0000 |
---|---|---|
committer | James Atkinson <thefinn@users.sourceforge.net> | 2001-03-04 01:27:58 +0000 |
commit | 9411996f4568b026d009ecd6426d2d7dec7bef1a (patch) | |
tree | 5fd298607fc4a4329b0911474cc42c16f3e828a1 /phpBB/upgrade_20.php | |
parent | e9aedae48fac38e7087514d4a863ff2b836378b3 (diff) | |
download | forums-9411996f4568b026d009ecd6426d2d7dec7bef1a.tar forums-9411996f4568b026d009ecd6426d2d7dec7bef1a.tar.gz forums-9411996f4568b026d009ecd6426d2d7dec7bef1a.tar.bz2 forums-9411996f4568b026d009ecd6426d2d7dec7bef1a.tar.xz forums-9411996f4568b026d009ecd6426d2d7dec7bef1a.zip |
Misc fixes
git-svn-id: file:///svn/phpbb/trunk@80 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/upgrade_20.php')
-rw-r--r-- | phpBB/upgrade_20.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/upgrade_20.php b/phpBB/upgrade_20.php index 2081b36a07..094cc5dedd 100644 --- a/phpBB/upgrade_20.php +++ b/phpBB/upgrade_20.php @@ -417,7 +417,8 @@ Backups completed ok.<P> $forum_id = $row['forum_id']; $topic_status = $row['topic_status']; $topic_notify = $row['topic_notify']; - + $forum_id = $row['forum_id']; + $sql = "insert topics (topic_id, topic_title, topic_poster, topic_time, topic_views, forum_id, topic_status, topic_notify) values ($topic_id, '$topic_title', $topic_poster, $topic_time, $topic_views, $forum_id, $topic_status, $topic_notify)"; mysql_query($sql, $db); |