* 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:
parent
9ea40294b4
commit
7259bc203d
1 changed files with 8 additions and 0 deletions
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue