summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--inc/utf8.php2
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);