Followup r98339
authorSam Reed <reedy@users.mediawiki.org>
Wed, 28 Sep 2011 18:19:57 +0000 (18:19 +0000)
committerSam Reed <reedy@users.mediawiki.org>
Wed, 28 Sep 2011 18:19:57 +0000 (18:19 +0000)
Add RELEASE-NOTES-1.19

Fix runChild in DatabaseUpdater.php

RELEASE-NOTES-1.19
includes/installer/DatabaseUpdater.php

index a52d4da..0a01acd 100644 (file)
@@ -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
index 4f427ba..595b1e2 100644 (file)
@@ -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" );