-
Bug
-
Resolution: Fixed
-
Major
-
3.0.12, 3.1.0-b2
-
None
-
PHP 5.3.23
Hi all,
During the DB test connection, if a DB connection occurs, all special chars are not supported.
See screenshot
FIX:
Open /includes/functions_install.php
Find
$error[] = $lang['INST_ERR_DB_CONNECT'] . '<br />' . (($db_error['message']) ? $db_error['message'] : $lang['INST_ERR_DB_NO_ERROR']);
|
Replace with
$error[] = $lang['INST_ERR_DB_CONNECT'] . '<br />' . (($db_error['message']) ? utf8_convert_message($db_error['message']) : $lang['INST_ERR_DB_NO_ERROR']);
|