diff options
-rwxr-xr-x | docs/CHANGELOG | 2 | ||||
-rw-r--r-- | lib/debug.lib.php | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/docs/CHANGELOG b/docs/CHANGELOG index 2836d2b7..5115e936 100755 --- a/docs/CHANGELOG +++ b/docs/CHANGELOG @@ -4,6 +4,8 @@ -------------------------------------------------------------------------- v.3.5-Alpha1 + - Fix divide by 0 error during transcode in some configurations + - Remove root mysql pw requirement from installer - Added Image Dimensions on Find Album Art page - Added Confirmation Screen to Catalog Deletion - Reorganized Menu System and Added Modules section 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; } |