From f776a7ed688ca34e855f200af65b427ee84f5473 Mon Sep 17 00:00:00 2001 From: Sam Reed Date: Wed, 28 Sep 2011 18:19:57 +0000 Subject: [PATCH] Followup r98339 Add RELEASE-NOTES-1.19 Fix runChild in DatabaseUpdater.php --- RELEASE-NOTES-1.19 | 1 + includes/installer/DatabaseUpdater.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/RELEASE-NOTES-1.19 b/RELEASE-NOTES-1.19 index a52d4dae3b..0a01acd72b 100644 --- a/RELEASE-NOTES-1.19 +++ b/RELEASE-NOTES-1.19 @@ -14,6 +14,7 @@ production. * Removed SkinTemplateSetupPageCss hook; use BeforePageDisplay instead. * (bug 27132) movefile right granted by default to registered users. * Default cookie lifetime ($wgCookieExpiration) is increased to 180 days. +* (bug 31204) Removed old user.user_options === New features in 1.19 === * (bug 30497) Add client-nojs and client-js classes on document element diff --git a/includes/installer/DatabaseUpdater.php b/includes/installer/DatabaseUpdater.php index 4f427badc3..595b1e265b 100644 --- a/includes/installer/DatabaseUpdater.php +++ b/includes/installer/DatabaseUpdater.php @@ -568,7 +568,7 @@ abstract class DatabaseUpdater { } protected function doMigrateUserOptions() { - $cl = $this->maintenance->runChild( 'ConvertUserOptions' ); + $cl = $this->maintenance->runChild( 'ConvertUserOptions', 'convertUserOptions.php' ); $this->output( "Migrating remaining user_options... " ); $cl->execute(); $this->output( "done.\n" ); -- 2.20.1