Small code formatting
authorAntoine Musso <hashar@users.mediawiki.org>
Sat, 13 Aug 2005 07:54:43 +0000 (07:54 +0000)
committerAntoine Musso <hashar@users.mediawiki.org>
Sat, 13 Aug 2005 07:54:43 +0000 (07:54 +0000)
languages/LanguageSl.php

index 1f43b99..58e1477 100644 (file)
@@ -880,26 +880,22 @@ class LanguageSl extends LanguageUtf8 {
                return $wgDateFormatsSl;
        }
        
-       function getValidSpecialPages()
-       {
+       function getValidSpecialPages() {
                global $wgValidSpecialPagesSl;
                return $wgValidSpecialPagesSl;
        }
        
-       function getSysopSpecialPages()
-       {
+       function getSysopSpecialPages() {
                global $wgSysopSpecialPagesSl;
                return $wgSysopSpecialPagesSl;
        }
        
-       function getDeveloperSpecialPages()
-       {
+       function getDeveloperSpecialPages() {
                global $wgDeveloperSpecialPagesSl;
                return $wgDeveloperSpecialPagesSl;
        }
        
-       function getMessage( $key )
-       {
+       function getMessage( $key ) {
                global $wgAllMessagesSl;
                if(array_key_exists($key, $wgAllMessagesSl))
                        return $wgAllMessagesSl[$key];
@@ -911,10 +907,9 @@ class LanguageSl extends LanguageUtf8 {
                return "iso-8859-2";
        }
 
-        function formatNum( $number, $year = false ) {
-                return $year ? $number : strtr($this->commafy($number), '.,', ',.' );
-        }
-
+       function formatNum( $number, $year = false ) {
+               return $year ? $number : strtr($this->commafy($number), '.,', ',.' );
+       }
 }
 
 ?>