* I'm not even sure this is needed (see last commit) since everything should

inherit the LanguageUtf8 class, but just in case..
This commit is contained in:
Ævar Arnfjörð Bjarmason 2005-10-22 19:39:51 +00:00
parent 9ea40294b4
commit 7259bc203d

View file

@ -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;