Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
I
ISPConfig 3
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Petar
ISPConfig 3
Commits
5eafbcd5
Commit
5eafbcd5
authored
9 years ago
by
Marius Cramer
Browse files
Options
Downloads
Patches
Plain Diff
- don't set connect params in constructor (too early)
parent
d7ad8f37
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
install/lib/mysql.lib.php
+7
-11
7 additions, 11 deletions
install/lib/mysql.lib.php
with
7 additions
and
11 deletions
install/lib/mysql.lib.php
+
7
−
11
View file @
5eafbcd5
...
@@ -60,10 +60,14 @@ class db extends mysqli
...
@@ -60,10 +60,14 @@ class db extends mysqli
////
////
*/
*/
// constructor
public
function
__destruct
()
{
public
function
__construct
(
$host
=
NULL
,
$user
=
NULL
,
$pass
=
NULL
,
$database
=
NULL
)
{
if
(
$this
->
_iConnId
)
mysqli_close
(
$this
->
_iConnId
);
}
private
function
do_connect
()
{
global
$conf
;
global
$conf
;
if
(
$this
->
_iConnId
)
return
true
;
$this
->
dbHost
=
$conf
[
"mysql"
][
"host"
];
$this
->
dbHost
=
$conf
[
"mysql"
][
"host"
];
$this
->
dbName
=
''
;
$this
->
dbName
=
''
;
$this
->
dbUser
=
$conf
[
"mysql"
][
"admin_user"
];
$this
->
dbUser
=
$conf
[
"mysql"
][
"admin_user"
];
...
@@ -71,14 +75,6 @@ class db extends mysqli
...
@@ -71,14 +75,6 @@ class db extends mysqli
$this
->
dbCharset
=
$conf
[
"mysql"
][
"charset"
];
$this
->
dbCharset
=
$conf
[
"mysql"
][
"charset"
];
$this
->
dbNewLink
=
false
;
$this
->
dbNewLink
=
false
;
$this
->
dbClientFlags
=
null
;
$this
->
dbClientFlags
=
null
;
}
public
function
__destruct
()
{
if
(
$this
->
_iConnId
)
mysqli_close
(
$this
->
_iConnId
);
}
private
function
do_connect
()
{
if
(
$this
->
_iConnId
)
return
true
;
$this
->
_iConnId
=
mysqli_connect
(
$this
->
dbHost
,
$this
->
dbUser
,
$this
->
dbPass
);
$this
->
_iConnId
=
mysqli_connect
(
$this
->
dbHost
,
$this
->
dbUser
,
$this
->
dbPass
);
$try
=
0
;
$try
=
0
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment