good thing we're not actually using this fallback func, huh
authorBrion Vibber <brion@users.mediawiki.org>
Tue, 27 Mar 2007 19:25:26 +0000 (19:25 +0000)
committerBrion Vibber <brion@users.mediawiki.org>
Tue, 27 Mar 2007 19:25:26 +0000 (19:25 +0000)
includes/GlobalFunctions.php

index 6650c89..db09675 100644 (file)
@@ -67,7 +67,7 @@ if ( !function_exists( 'mb_strlen' ) ) {
         * @param string $enc optional encoding; ignored
         * @return int
         */
-       function new_mb_strlen( $str, $enc="" ) {
+       function mb_strlen( $str, $enc="" ) {
                $counts = count_chars( $str );
                $total = 0;