diff options
-rw-r--r-- | CHANGES | 1 | ||||
-rw-r--r-- | src/install.php | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -36,6 +36,7 @@ v2.38 (Unreleased) [fix] Errors upon emptying the trash weren't displayed properly [fix] Unescaped search strings could lead to XSS bugs. [add] Ability to natively print images to a direct-attached printer. + [fix] Fix detection of PHP's 'mbstring' extension v2.37.1 (December 3, 2012) diff --git a/src/install.php b/src/install.php index f130fa4..8b8c854 100644 --- a/src/install.php +++ b/src/install.php @@ -937,7 +937,7 @@ if (!function_exists("bccomp")) { print "<h4><font color=\"red\">PHP's BC Math routines are not installed or enabled. The <i>bccomp</i> extension is required.</font></h4>\n"; $go = 0; } -if (!function_exists("mbstring")) { +if (!function_exists("mb_parse_str")) { print "<h4><font color=\"red\">PHP's Multi-Byte String routines are not installed or enabled. The <i>mbstring</i> extension is required.</font></h4>\n"; $go = 0; } |