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:
@@ -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";
|
||||
|
Reference in New Issue
Block a user