Revert "using the right variables is better"

This reverts commit bb5914faf0.
This commit is contained in:
fser 2014-07-05 22:26:28 +02:00
parent c00eee24d5
commit b950c3f842
1 changed files with 2 additions and 1 deletions

View File

@ -121,7 +121,8 @@ foreach ($mysqlConfigFile as $line) {
*/ */
class DB_system extends DB_Sql { class DB_system extends DB_Sql {
function __construct() { function __construct() {
parent::__construct('127.0.0.4, $database, $user, $password); global $L_MYSQL_HOST,$L_MYSQL_DATABASE,$L_MYSQL_LOGIN,$L_MYSQL_PWD;
parent::__construct($L_MYSQL_DATABASE, $L_MYSQL_HOST, $L_MYSQL_LOGIN, $L_MYSQL_PWD);
} }
} }