From c8da2a1cff79e7d0de9f1ff1dd8849e37e1dfc2b Mon Sep 17 00:00:00 2001 From: Antoine Musso Date: Sat, 13 Aug 2005 07:54:43 +0000 Subject: [PATCH] Small code formatting --- languages/LanguageSl.php | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/languages/LanguageSl.php b/languages/LanguageSl.php index 1f43b99efc..58e14778aa 100644 --- a/languages/LanguageSl.php +++ b/languages/LanguageSl.php @@ -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), '.,', ',.' ); + } } ?> -- 2.20.1