From cb424e7ad6a13bb94f23983db466460ac8d42fc9 Mon Sep 17 00:00:00 2001 From: X! Date: Sun, 2 Jan 2011 01:35:24 +0000 Subject: [PATCH] Fix r79463 and r79464: Syntax error --- includes/GlobalFunctions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/GlobalFunctions.php b/includes/GlobalFunctions.php index 6c354a7eac..f5cb93f5fa 100644 --- a/includes/GlobalFunctions.php +++ b/includes/GlobalFunctions.php @@ -120,7 +120,7 @@ function fallback_mb_substr_split_unicode( $str, $splitPos ) { if ( !function_exists( 'mb_substr' ) ) { function mb_substr( $str, $start, $count='end' ) { - return fallback_mb_substr( $str, $start, $count ) + return fallback_mb_substr( $str, $start, $count ); } function mb_substr_split_unicode( $str, $splitPos ) { -- 2.20.1