Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Carlos Gonzalez
ISPConfig 3
Commits
8b1b6ecc
Commit
8b1b6ecc
authored
Aug 14, 2018
by
Jesse Norell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove old db_new_link option
parent
a2ce9dc7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
4 deletions
+0
-4
interface/lib/classes/db_mysql.inc.php
interface/lib/classes/db_mysql.inc.php
+0
-2
server/lib/classes/db_mysql.inc.php
server/lib/classes/db_mysql.inc.php
+0
-2
No files found.
interface/lib/classes/db_mysql.inc.php
View file @
8b1b6ecc
...
...
@@ -49,7 +49,6 @@ class db
private
$dbUser
=
''
;
// database authorized user
private
$dbPass
=
''
;
// user's password
private
$dbCharset
=
'utf8'
;
// Database charset
private
$dbNewLink
=
false
;
// Return a new linkID when connect is called again
private
$dbClientFlags
=
0
;
// MySQL Client falgs
/**#@-*/
...
...
@@ -81,7 +80,6 @@ class db
$this
->
dbUser
=
$user
?
$user
:
$conf
[
'db_user'
];
$this
->
dbPass
=
$pass
?
$pass
:
$conf
[
'db_password'
];
$this
->
dbCharset
=
$conf
[
'db_charset'
];
$this
->
dbNewLink
=
$conf
[
'db_new_link'
];
$this
->
dbClientFlags
=
$flags
?
$flags
:
$conf
[
'db_client_flags'
];
$this
->
_iConnId
=
mysqli_init
();
...
...
server/lib/classes/db_mysql.inc.php
View file @
8b1b6ecc
...
...
@@ -49,7 +49,6 @@ class db
private
$dbUser
=
''
;
// database authorized user
private
$dbPass
=
''
;
// user's password
private
$dbCharset
=
'utf8'
;
// Database charset
private
$dbNewLink
=
false
;
// Return a new linkID when connect is called again
private
$dbClientFlags
=
0
;
// MySQL Client falgs
/**#@-*/
...
...
@@ -81,7 +80,6 @@ class db
$this
->
dbUser
=
$user
?
$user
:
$conf
[
'db_user'
];
$this
->
dbPass
=
$pass
?
$pass
:
$conf
[
'db_password'
];
$this
->
dbCharset
=
$conf
[
'db_charset'
];
$this
->
dbNewLink
=
$conf
[
'db_new_link'
];
$this
->
dbClientFlags
=
$flags
?
$flags
:
$conf
[
'db_client_flags'
];
$this
->
_iConnId
=
mysqli_init
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment