From 4d807ea687e2771f766ac5f2bf398cd64e689183 Mon Sep 17 00:00:00 2001 From: Andreas Gohr Date: Sun, 18 Sep 2005 11:43:08 +0200 Subject: small fix for utf8.php utf8_strtoupper called mb_strtolower darcs-hash:20050918094308-7ad00-c595455bcb6e312f29c0d27fa83d0905cd2303cc.gz --- inc/utf8.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'inc') diff --git a/inc/utf8.php b/inc/utf8.php index 176b9f813..26d64a515 100644 --- a/inc/utf8.php +++ b/inc/utf8.php @@ -254,7 +254,7 @@ function utf8_strtolower($string){ */ function utf8_strtoupper($string){ if(!defined('UTF8_NOMBSTRING') && function_exists('mb_strtolower')) - return mb_strtolower($string,'utf-8'); + return mb_strtoupper($string,'utf-8'); global $UTF8_LOWER_TO_UPPER; $uni = utf8_to_unicode($string); -- cgit v1.2.3