From: umherirrender Date: Sat, 10 Nov 2012 16:23:32 +0000 (+0100) Subject: Remove unneeded third param X-Git-Tag: 1.31.0-rc.0~21661^2 X-Git-Url: http://git.cyclocoop.org/%24action?a=commitdiff_plain;h=e2ef09af0f3a9d0291066a6dab706dd9730c7f8f;p=lhc%2Fweb%2Fwiklou.git 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 --- 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 ) {