Revert "using the right variables is better"
This reverts commit bb5914faf0
.
This commit is contained in:
parent
c00eee24d5
commit
b950c3f842
|
@ -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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue