1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-28 02:01:52 +02:00

Fix potential issue with themes table ... I knew Bart had a reason for dropping tables at the beginning :D

git-svn-id: file:///svn/phpbb/trunk@1766 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen 2002-01-01 15:46:59 +00:00
parent 26d4c2d187
commit bbccb4b745

View File

@ -557,8 +557,15 @@ if( !empty($next) )
switch($next)
{
case 'start':
case 'cleanstart':
print "Dropping sessions and themes tables ... ";
flush();
query("DROP TABLE sessions", "Couldn't drop table 'sessions'");
query("DROP TABLE themes", "Couldn't drop table 'themes'");
print "Done<br />\n";
end_step('mod_old_tables');
case 'mod_old_tables':
@ -1232,7 +1239,7 @@ if( !empty($next) )
query($sql, "Couldn't update posts to remove deleted user poster_id values");
}
print "Removed $users_removed Users ... Done<br />\n";
print "Removed $users_removed non-existent user references ... Done<br />\n";
echo "<br />Complete<br />\n";
end_step('convert_pm');
@ -1937,7 +1944,7 @@ if( !empty($next) )
common_header();
print "Dropping unused tables ... <br />\n";
$drop_tables = array('access', 'forum_access', 'forum_mods', 'headermetafooter', 'sessions', 'themes', 'whosonline', $table_prefix . 'old_config');
$drop_tables = array('access', 'forum_access', 'forum_mods', 'headermetafooter', 'whosonline', $table_prefix . 'old_config');
for($i = 0; $i < count($drop_tables); $i++)
{