diff options
author | Andreas Gohr <andi@splitbrain.org> | 2005-09-18 11:43:08 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2005-09-18 11:43:08 +0200 |
commit | 4d807ea687e2771f766ac5f2bf398cd64e689183 (patch) | |
tree | 7a11fc7620fed4e8c9d7b599aa08da420c22a7fa | |
parent | 9773c5edfdb8d172ce0d2bb7644b774728be894a (diff) | |
download | rpg-4d807ea687e2771f766ac5f2bf398cd64e689183.tar.gz rpg-4d807ea687e2771f766ac5f2bf398cd64e689183.tar.bz2 |
small fix for utf8.php
utf8_strtoupper called mb_strtolower
darcs-hash:20050918094308-7ad00-c595455bcb6e312f29c0d27fa83d0905cd2303cc.gz
-rw-r--r-- | inc/utf8.php | 2 |
1 files changed, 1 insertions, 1 deletions
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); |