Tweak docs
authorTim Starling <tstarling@users.mediawiki.org>
Fri, 3 Jul 2009 06:55:30 +0000 (06:55 +0000)
committerTim Starling <tstarling@users.mediawiki.org>
Fri, 3 Jul 2009 06:55:30 +0000 (06:55 +0000)
languages/Language.php

index 6987129..01c189e 100644 (file)
@@ -168,6 +168,9 @@ class Language {
                return $lang;
        }
 
+       /**
+        * Get the LocalisationCache instance
+        */
        public static function getLocalisationCache() {
                if ( is_null( self::$dataCache ) ) {
                        global $wgLocalisationCacheConf;
@@ -175,7 +178,7 @@ class Language {
                        self::$dataCache = new $class( $wgLocalisationCacheConf );
                }
                return self::$dataCache;
-       }               
+       }
 
        function __construct() {
                $this->mConverter = new FakeConverter($this);