Index: trunk/phase3/languages/Language.php |
— | — | @@ -168,6 +168,9 @@ |
169 | 169 | return $lang; |
170 | 170 | } |
171 | 171 | |
| 172 | + /** |
| 173 | + * Get the LocalisationCache instance |
| 174 | + */ |
172 | 175 | public static function getLocalisationCache() { |
173 | 176 | if ( is_null( self::$dataCache ) ) { |
174 | 177 | global $wgLocalisationCacheConf; |
— | — | @@ -175,7 +178,7 @@ |
176 | 179 | self::$dataCache = new $class( $wgLocalisationCacheConf ); |
177 | 180 | } |
178 | 181 | return self::$dataCache; |
179 | | - } |
| 182 | + } |
180 | 183 | |
181 | 184 | function __construct() { |
182 | 185 | $this->mConverter = new FakeConverter($this); |