From e2ef09af0f3a9d0291066a6dab706dd9730c7f8f Mon Sep 17 00:00:00 2001 From: umherirrender Date: Sat, 10 Nov 2012 17:23:32 +0100 Subject: [PATCH] Remove unneeded third param the 'messages' are already part of 'preload', so there is no need for that. Last changes there: r101507/r102304 Change-Id: I6c9daa3c46bd7f1db851cc4620ecf59f81e6f9aa --- includes/LocalisationCache.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/LocalisationCache.php b/includes/LocalisationCache.php index e88c240837..94e823e16b 100644 --- a/includes/LocalisationCache.php +++ b/includes/LocalisationCache.php @@ -379,7 +379,7 @@ class LocalisationCache { } $deps = $this->store->get( $code, 'deps' ); - $keys = $this->store->get( $code, 'list', 'messages' ); + $keys = $this->store->get( $code, 'list' ); $preload = $this->store->get( $code, 'preload' ); // Different keys may expire separately, at least in LCStore_Accel if ( $deps === null || $keys === null || $preload === null ) { -- 2.20.1