| 543 | | $db = &ADONewConnection($CFG->dbtype); |
|---|
| 544 | | $ADODB_FETCH_MODE = ADODB_FETCH_ASSOC; |
|---|
| 545 | | |
|---|
| 546 | | $result = @$db->Connect($CFG->dbhost, $CFG->dbuser, $CFG->dbpass, $CFG->dbname); |
|---|
| 547 | | |
|---|
| 548 | | if (!$result) { |
|---|
| 549 | | unset($db); |
|---|
| | 543 | if (empty($CFG->dbhost) || empty($CFG->dbuser) || empty($CFG->dbname)) { |
|---|
| | 544 | $result = false; |
|---|
| | 545 | } else { |
|---|
| | 546 | $db = &ADONewConnection($CFG->dbtype); |
|---|
| | 547 | $ADODB_FETCH_MODE = ADODB_FETCH_ASSOC; |
|---|
| | 548 | |
|---|
| | 549 | $result = @$db->Connect($CFG->dbhost, $CFG->dbuser, $CFG->dbpass, $CFG->dbname); |
|---|
| | 550 | |
|---|
| | 551 | if (!$result) { |
|---|
| | 552 | unset($db); |
|---|
| | 553 | } |
|---|