Skip to content

Commit 8b1b6ec

Browse files
committed
remove old db_new_link option
1 parent a2ce9dc commit 8b1b6ec

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

interface/lib/classes/db_mysql.inc.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ class db
4949
private $dbUser = ''; // database authorized user
5050
private $dbPass = ''; // user's password
5151
private $dbCharset = 'utf8';// Database charset
52-
private $dbNewLink = false; // Return a new linkID when connect is called again
5352
private $dbClientFlags = 0; // MySQL Client falgs
5453
/**#@-*/
5554

@@ -81,7 +80,6 @@ public function __construct($host = NULL , $user = NULL, $pass = NULL, $database
8180
$this->dbUser = $user ? $user : $conf['db_user'];
8281
$this->dbPass = $pass ? $pass : $conf['db_password'];
8382
$this->dbCharset = $conf['db_charset'];
84-
$this->dbNewLink = $conf['db_new_link'];
8583
$this->dbClientFlags = $flags ? $flags : $conf['db_client_flags'];
8684
$this->_iConnId = mysqli_init();
8785

server/lib/classes/db_mysql.inc.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ class db
4949
private $dbUser = ''; // database authorized user
5050
private $dbPass = ''; // user's password
5151
private $dbCharset = 'utf8';// Database charset
52-
private $dbNewLink = false; // Return a new linkID when connect is called again
5352
private $dbClientFlags = 0; // MySQL Client falgs
5453
/**#@-*/
5554

@@ -81,7 +80,6 @@ public function __construct($host = NULL , $user = NULL, $pass = NULL, $database
8180
$this->dbUser = $user ? $user : $conf['db_user'];
8281
$this->dbPass = $pass ? $pass : $conf['db_password'];
8382
$this->dbCharset = $conf['db_charset'];
84-
$this->dbNewLink = $conf['db_new_link'];
8583
$this->dbClientFlags = $flags ? $flags : $conf['db_client_flags'];
8684
$this->_iConnId = mysqli_init();
8785

0 commit comments

Comments
 (0)