Followup r101449, just changing forceRecache isn't actually enough
authorSam Reed <reedy@users.mediawiki.org>
Tue, 1 Nov 2011 07:34:56 +0000 (07:34 +0000)
committerSam Reed <reedy@users.mediawiki.org>
Tue, 1 Nov 2011 07:34:56 +0000 (07:34 +0000)
Add a method to set force to true on the options array to RebuildLocalisationCache

includes/installer/DatabaseUpdater.php
maintenance/rebuildLocalisationCache.php

index 6461da8..7410594 100644 (file)
@@ -621,10 +621,12 @@ abstract class DatabaseUpdater {
        }
 
        protected function doRebuildLocalisationCache() {
-               global $wgLocalisationCacheConf;
-               $wgLocalisationCacheConf['forceRecache'] = true;
+               /**
+                * @var $cl RebuildLocalisationCache
+                */
                $cl = $this->maintenance->runChild( 'RebuildLocalisationCache', 'rebuildLocalisationCache.php' );
                $this->output( "Rebuilding localisation cache...\n" );
+               $cl->setForce();
                $cl->execute();
                $this->output( "Rebuilding localisation cache done.\n" );
        }
index 0ca9961..831d808 100644 (file)
@@ -112,9 +112,9 @@ class RebuildLocalisationCache extends Maintenance {
         * Helper function to rebuild list of languages codes. Prints the code
         * for each language which is rebuilt.
         * @param $codes  list  List of language codes to rebuild.
-        * @param $lc  object  Instance of LocalisationCache_BulkLoad (?)
-        * @param $force  bool  Rebuild up-to-date languages
-        * @return  int  Number of rebuilt languages
+        * @param $lc LocalisationCache Instance of LocalisationCache_BulkLoad (?)
+        * @param $force bool Rebuild up-to-date languages
+        * @return int Number of rebuilt languages
         */
        private function doRebuild( $codes, $lc, $force ) {
                $numRebuilt = 0;
@@ -127,6 +127,15 @@ class RebuildLocalisationCache extends Maintenance {
                }
                return $numRebuilt;
        }
+
+       /**
+        * Sets whether a run of this maintenance script has the force parameter set
+        *
+        * @param bool $forced
+        */
+       public function setForce( $forced = true ) {
+               $this->mOptions['force'] = $forced;
+       }
 }
 
 $maintClass = "RebuildLocalisationCache";