Return values from finalSetup() aren't evaluated

Not that parent::finalSetup() returns anything anyway...

Change-Id: I21cb5e13cc83297f24a30ef37859430b0fefb695
This commit is contained in:
Reedy 2013-08-15 23:51:26 +01:00
parent 5c5fb511c7
commit 297129a4fc

View file

@ -61,7 +61,7 @@ class RebuildLocalisationCache extends Maintenance {
# no l10n cache. Break the cycle by forcing $wgLanguageCode = 'en'.
global $wgLanguageCode;
$wgLanguageCode = 'en';
return parent::finalSetup();
parent::finalSetup();
}
public function execute() {