1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

Removed failure on session table type change to HEAP, no biggie if it doesn't work

git-svn-id: file:///svn/phpbb/trunk@1771 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen
2002-01-01 22:52:18 +00:00
parent 16af530e96
commit f9589e5889
2 changed files with 6 additions and 9 deletions

View File

@@ -1895,11 +1895,11 @@ if( !empty($next) )
$version = $row['mysql_version'];
if( preg_match("/^(3\.23|4\.)/", $version) )
if( preg_match("/^(3\.23)|(4\.)/", $version) )
{
$sql = "ALTER TABLE " . $table_prefix . "sessions
TYPE=HEAP";
query($sql, "Couldn't alter sessions table type to HEAP");
$db->sql_query($sql);
}
echo "Done<br />\n";