From: Alexandre Emsenhuber Date: Wed, 2 Sep 2009 20:16:26 +0000 (+0000) Subject: * (bug 20464) Force manual recaching to false in LocalisationCache::disableBackend... X-Git-Tag: 1.31.0-rc.0~39966 X-Git-Url: http://git.cyclocoop.org/%24self?a=commitdiff_plain;h=b274afeef5a5410934b9a2e3370533b28d095826;p=lhc%2Fweb%2Fwiklou.git * (bug 20464) Force manual recaching to false in LocalisationCache::disableBackend() since otherwise an Exception with the message "No localisation cache found for English. Please run maintenance/rebuildLocalisationCache.php." is thrown each time update.php is executed. --- diff --git a/includes/LocalisationCache.php b/includes/LocalisationCache.php index 0b0f3d1797..22159fd59d 100644 --- a/includes/LocalisationCache.php +++ b/includes/LocalisationCache.php @@ -669,6 +669,7 @@ class LocalisationCache { */ public function disableBackend() { $this->store = new LCStore_Null; + $this->manualRecache = false; } }