fixing bootstrap, in the right branch?
This commit is contained in:
parent
824151f216
commit
227822c0c5
|
@ -120,20 +120,12 @@ foreach ($mysqlConfigFile as $line) {
|
||||||
* the connection to the MySQL database.
|
* the connection to the MySQL database.
|
||||||
*/
|
*/
|
||||||
class DB_system extends DB_Sql {
|
class DB_system extends DB_Sql {
|
||||||
var $Host,$Database,$User,$Password;
|
function __construct() {
|
||||||
/**
|
global $database, $user, $password;
|
||||||
* Constructor
|
parent::__construct('127.0.0.1', $database, $user, $password);
|
||||||
*/
|
|
||||||
function DB_system($user,$database,$password) {
|
|
||||||
global $L_MYSQL_HOST,$L_MYSQL_DATABASE,$L_MYSQL_LOGIN,$L_MYSQL_PWD;
|
|
||||||
$this->Host = "127.0.0.1";
|
|
||||||
$this->Database = $database;
|
|
||||||
$this->User = $user;
|
|
||||||
$this->Password = $password;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// Creates database from schema
|
// Creates database from schema
|
||||||
// *********************************************
|
// *********************************************
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue