From 97dbe34353d238ce5876b8056124342612278e75 Mon Sep 17 00:00:00 2001 From: Sam Reed Date: Sun, 2 Jan 2011 08:05:04 +0000 Subject: [PATCH] * (bug 26540) Fixed wrong call to applyPatch in MysqlUpdater --- RELEASE-NOTES | 1 + includes/installer/MysqlUpdater.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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" ); } } -- 2.20.1