From 40288f21caa3df78fb0c949a9c0dfdf6d3d1d95a Mon Sep 17 00:00:00 2001 From: Karl 'vollmerk' Vollmer Date: Fri, 11 Jul 2008 03:51:07 +0000 Subject: remove restriction forcing non-blank root pw --- docs/CHANGELOG | 2 ++ lib/debug.lib.php | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) 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; } -- cgit