From: Sam Reed Date: Sun, 2 Jan 2011 08:05:04 +0000 (+0000) Subject: * (bug 26540) Fixed wrong call to applyPatch in MysqlUpdater X-Git-Tag: 1.31.0-rc.0~32886 X-Git-Url: http://git.cyclocoop.org/%7B%7B%20url_for%28%27admin_vote_add%27%29%20%7D%7D?a=commitdiff_plain;h=97dbe34353d238ce5876b8056124342612278e75;p=lhc%2Fweb%2Fwiklou.git * (bug 26540) Fixed wrong call to applyPatch in MysqlUpdater --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 62a1dca441..78e23b6f3f 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -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 diff --git a/includes/installer/MysqlUpdater.php b/includes/installer/MysqlUpdater.php index e860b38f00..35154f734d 100644 --- a/includes/installer/MysqlUpdater.php +++ b/includes/installer/MysqlUpdater.php @@ -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" ); } }