Skip to content

Commit

Permalink
Another fix to make collation fixing faster
Browse files Browse the repository at this point in the history
git-svn-id: file:///Users/Shitiz/Downloads/lssvn/source/stable_plus@3351 b72ed6b6-b9f8-46b5-92b4-906544132732
  • Loading branch information
c-schmitz committed Oct 7, 2007
1 parent 46a54a3 commit 586cbcf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions admin/install/upgrade-mysql.php
Expand Up @@ -111,8 +111,8 @@ function fix_mysql_collation()

while ( $tables = $result->FetchRow() ) {
// Loop through all tables in this database
$table = $tables['name'];
$tablecollation=$tables['collation'];
$table = $tables['Name'];
$tablecollation=$tables['Collation'];
if (strpos($table,'old_')===false)
{
if ($tablecollation!='utf8_unicode_ci')
Expand Down

0 comments on commit 586cbcf

Please sign in to comment.