diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-07-11 03:51:07 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-07-11 03:51:07 +0000 |
commit | 40288f21caa3df78fb0c949a9c0dfdf6d3d1d95a (patch) | |
tree | 6b4abc756a5e18d18d99c100fabe0643781b67c0 /lib/debug.lib.php | |
parent | 9cf266e662e4b5b236ae27d4924c41f69b00253b (diff) | |
download | ampache-40288f21caa3df78fb0c949a9c0dfdf6d3d1d95a.tar.gz ampache-40288f21caa3df78fb0c949a9c0dfdf6d3d1d95a.tar.bz2 ampache-40288f21caa3df78fb0c949a9c0dfdf6d3d1d95a.zip |
remove restriction forcing non-blank root pw
Diffstat (limited to 'lib/debug.lib.php')
-rw-r--r-- | lib/debug.lib.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/debug.lib.php b/lib/debug.lib.php index 60195054..3310f3bd 100644 --- a/lib/debug.lib.php +++ b/lib/debug.lib.php @@ -38,7 +38,7 @@ function check_database($host,$username,$pass) { if (!is_resource($dbh)) { return false; } - if (!$host || !$username || !$pass) { + if (!$host || !$username) { return false; } |