1
0
Fork 0
mirror of https://github.com/Yetangitu/ampache synced 2025-10-05 19:41:55 +02:00

remove restriction forcing non-blank root pw

This commit is contained in:
Karl 'vollmerk' Vollmer 2008-07-11 03:51:07 +00:00
parent 9cf266e662
commit 40288f21ca
2 changed files with 3 additions and 1 deletions

View file

@ -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;
}