From: Sam Reed Date: Thu, 2 Sep 2010 21:38:45 +0000 (+0000) Subject: Followup r72207, uc isn't static X-Git-Tag: 1.31.0-rc.0~35218 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/banques/?a=commitdiff_plain;h=e6da69f0f295dfeb223e5ed6469cda0b76a46fe9;p=lhc%2Fweb%2Fwiklou.git Followup r72207, uc isn't static --- diff --git a/languages/Language.php b/languages/Language.php index e1f6b00eae..877d64fc87 100644 --- a/languages/Language.php +++ b/languages/Language.php @@ -1611,7 +1611,7 @@ class Language { return ucfirst( $str ); // use PHP's ucfirst() } else { // fall back to more complex logic in case of multibyte strings - return self::uc( $str, true ); + return $this->uc( $str, true ); } }