From b274afeef5a5410934b9a2e3370533b28d095826 Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Wed, 2 Sep 2009 20:16:26 +0000 Subject: [PATCH] * (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. --- includes/LocalisationCache.php | 1 + 1 file changed, 1 insertion(+) 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; } } -- 2.20.1