Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISPConfig
ISPConfig 3
Commits
64060a4c
Commit
64060a4c
authored
Apr 16, 2015
by
Marius Cramer
Browse files
- fixed installer mysql lib
parent
a6a094ab
Changes
1
Hide whitespace changes
Inline
Side-by-side
install/lib/mysql.lib.php
View file @
64060a4c
...
@@ -69,7 +69,7 @@ class db extends mysqli
...
@@ -69,7 +69,7 @@ class db extends mysqli
if
(
$this
->
_iConnId
)
return
true
;
if
(
$this
->
_iConnId
)
return
true
;
$this
->
dbHost
=
$conf
[
"mysql"
][
"host"
];
$this
->
dbHost
=
$conf
[
"mysql"
][
"host"
];
$this
->
dbName
=
''
;
$this
->
dbName
=
$conf
[
"mysql"
][
"database"
]
;
$this
->
dbUser
=
$conf
[
"mysql"
][
"admin_user"
];
$this
->
dbUser
=
$conf
[
"mysql"
][
"admin_user"
];
$this
->
dbPass
=
$conf
[
"mysql"
][
"admin_password"
];
$this
->
dbPass
=
$conf
[
"mysql"
][
"admin_password"
];
$this
->
dbCharset
=
$conf
[
"mysql"
][
"charset"
];
$this
->
dbCharset
=
$conf
[
"mysql"
][
"charset"
];
...
@@ -178,7 +178,6 @@ class db extends mysqli
...
@@ -178,7 +178,6 @@ class db extends mysqli
$this
->
do_connect
();
$this
->
do_connect
();
//if($this->isConnected == false) return false;
if
(
$sQuery
==
''
)
{
if
(
$sQuery
==
''
)
{
$this
->
_sqlerror
(
'Keine Anfrage angegeben / No query given'
);
$this
->
_sqlerror
(
'Keine Anfrage angegeben / No query given'
);
return
false
;
return
false
;
...
...
Write
Preview
Supports
Markdown
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