diff --git a/lib/debug.lib.php b/lib/debug.lib.php index 52fe8855..6487b16f 100644 --- a/lib/debug.lib.php +++ b/lib/debug.lib.php @@ -81,6 +81,14 @@ function check_php_pdo_mysql() return class_exists('PDO') ? in_array('mysql', PDO::getAvailableDrivers()) : false; } +function check_mbstring_func_overload() +{ + if ( ini_get('mbstring.func_overload') > 0) { + return false; + } + return true; +} + /** * check_config_values * checks to make sure that they have at least set the needed variables diff --git a/templates/show_test_table.inc.php b/templates/show_test_table.inc.php index b306b691..a3a65080 100644 --- a/templates/show_test_table.inc.php +++ b/templates/show_test_table.inc.php @@ -164,6 +164,21 @@ 2GB). This is not strictly necessary, but may result in a better experience. This generally requires 64-bit operating system.'); ?> +