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