* (bug 26540) Fixed wrong call to applyPatch in MysqlUpdater
authorSam Reed <reedy@users.mediawiki.org>
Sun, 2 Jan 2011 08:05:04 +0000 (08:05 +0000)
committerSam Reed <reedy@users.mediawiki.org>
Sun, 2 Jan 2011 08:05:04 +0000 (08:05 +0000)
RELEASE-NOTES
includes/installer/MysqlUpdater.php

index 62a1dca..78e23b6 100644 (file)
@@ -50,6 +50,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
 * (bug 26410) + signs are no longer treated as spaces in internal links if 
   link has a % sign in it.
 * (bug 26412) Search results headers no longer show a bogus edit link.
+* (bug 26540) Fixed wrong call to applyPatch in MysqlUpdater
 
 === API changes in 1.18 ===
 * (bug 26339) Throw warning when truncating an overlarge API result
index e860b38..35154f7 100644 (file)
@@ -191,7 +191,7 @@ class MysqlUpdater extends DatabaseUpdater {
                        $this->output( "...$table table has correct $field encoding.\n" );
                } else {
                        $this->output( "Fixing $field encoding on $table table... " );
-                       $this->db->applyPatch( $patchFile );
+                       $this->applyPatch( $patchFile );
                        $this->output( "ok\n" );
                }
        }