From b23b2b0d244fae1ef565a2137266fecf9b914eb3 Mon Sep 17 00:00:00 2001 From: Sam Reed Date: Thu, 3 Nov 2011 20:55:57 +0000 Subject: [PATCH] Fix fixme on r101177 --- includes/LocalisationCache.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/LocalisationCache.php b/includes/LocalisationCache.php index 7e650a94e8..1aaf8367bd 100644 --- a/includes/LocalisationCache.php +++ b/includes/LocalisationCache.php @@ -196,7 +196,7 @@ class LocalisationCache { * @return bool */ public function isMergeableKey( $key ) { - if ( !isset( $this->mergeableKeys ) ) { + if ( $this->mergeableKeys === null ) { $this->mergeableKeys = array_flip( array_merge( self::$mergeableMapKeys, self::$mergeableListKeys, -- 2.20.1