From: Ævar Arnfjörð Bjarmason Date: Sat, 22 Oct 2005 19:39:51 +0000 (+0000) Subject: * I'm not even sure this is needed (see last commit) since everything should X-Git-Tag: 1.6.0~1365 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/pie.php?a=commitdiff_plain;h=7259bc203d6fa023ad04e5b376dd595fc32185c3;p=lhc%2Fweb%2Fwiklou.git * I'm not even sure this is needed (see last commit) since everything should inherit the LanguageUtf8 class, but just in case.. --- diff --git a/languages/Language.php b/languages/Language.php index 3114d058ae..01e1612e84 100644 --- a/languages/Language.php +++ b/languages/Language.php @@ -2542,10 +2542,18 @@ class Language { return ucfirst( $string ); } + function uc( $str ) { + return strtoupper( $str ); + } + function lcfirst( $s ) { return strtolower( $s{0} ). substr( $s, 1 ); } + function lc( $str ) { + return strtolower( $str ); + } + function checkTitleEncoding( $s ) { global $wgInputEncoding;