We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6a094a commit 64060a4Copy full SHA for 64060a4
install/lib/mysql.lib.php
@@ -69,7 +69,7 @@ private function do_connect() {
69
70
if($this->_iConnId) return true;
71
$this->dbHost = $conf["mysql"]["host"];
72
- $this->dbName = '';
+ $this->dbName = $conf["mysql"]["database"];
73
$this->dbUser = $conf["mysql"]["admin_user"];
74
$this->dbPass = $conf["mysql"]["admin_password"];
75
$this->dbCharset = $conf["mysql"]["charset"];
@@ -178,7 +178,6 @@ private function _query($sQuery = '') {
178
179
$this->do_connect();
180
181
- //if($this->isConnected == false) return false;
182
if ($sQuery == '') {
183
$this->_sqlerror('Keine Anfrage angegeben / No query given');
184
return false;
0 commit comments