Index: trunk/phase3/includes/LocalisationCache.php |
— | — | @@ -851,7 +851,9 @@ |
852 | 852 | |
853 | 853 | public function get( $code, $key ) { |
854 | 854 | $k = wfMemcKey( 'l10n', $code, 'k', $key ); |
855 | | - return $this->cache->get( $k ); |
| 855 | + $r = $this->cache->get( $k ); |
| 856 | + if ( $r === false ) return null; |
| 857 | + return $r; |
856 | 858 | } |
857 | 859 | |
858 | 860 | public function startWrite( $code ) { |