We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c457ed6 commit 5803313Copy full SHA for 5803313
install/lib/installer_base.lib.php
@@ -206,7 +206,7 @@ public function check_prerequisites() {
206
if(version_compare(phpversion(), '5.4', '<')) $msg .= "PHP Version 5.4 or newer is required.\n";
207
if(!function_exists('curl_init')) $msg .= "PHP Curl Module is missing.\n";
208
if(!function_exists('mysqli_connect')) $msg .= "PHP MySQLi Module is nmissing.\n";
209
- if(!function_exists('mb_detect_encoding')) $msg .= "PHP Multibyte Module (MB) is nmissing.\n";
+ if(!function_exists('mb_detect_encoding')) $msg .= "PHP Multibyte Module (MB) is missing.\n";
210
211
if($msg != '') die($msg);
212
}
0 commit comments