Skip to content
This repository has been archived by the owner on Mar 19, 2021. It is now read-only.

Commit

Permalink
Bugfix #429
Browse files Browse the repository at this point in the history
Connection test was never performed, because of a wrong set value for
password status comparison.

Fixes #429: New Webui fails to connect to database
  • Loading branch information
fbergkemper committed Mar 4, 2015
1 parent 72c883c commit 85eba23
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -245,7 +245,7 @@ private function getDbConnectionStatus()
if(self::getDbDriverStatus() == 0 &&
self::getDbHostStatus() == 0 &&
self::getDbUserStatus() == 0 &&
self::getDbPasswordStatus() == -1
self::getDbPasswordStatus() == 0
) {
try {
$config = $this->getServiceLocator()->get('Config');
Expand Down

0 comments on commit 85eba23

Please sign in to comment.