fixing bootstrap to fit with new DB class
This commit is contained in:
parent
71f3a60e8c
commit
0acdc73224
|
@ -119,20 +119,12 @@ foreach ($mysqlConfigFile as $line) {
|
|||
* This class heriting from the db class of the phplib manages
|
||||
* the connection to the MySQL database.
|
||||
*/
|
||||
class DB_system extends DB_Sql {
|
||||
var $Host,$Database,$User,$Password;
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
class DB_system extends DB_Sql {
|
||||
function __construct() {
|
||||
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);
|
||||
}
|
||||
}
|
||||
|
||||
// Creates database from schema
|
||||
// *********************************************
|
||||
|
|
Loading…
Reference in New Issue