diff options
Diffstat (limited to 'lib/debug.lib.php')
-rw-r--r-- | lib/debug.lib.php | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/lib/debug.lib.php b/lib/debug.lib.php index 10ad838f..69825c68 100644 --- a/lib/debug.lib.php +++ b/lib/debug.lib.php @@ -1,7 +1,7 @@ <?php /* - Copyright (c) 2001 - 2006 Ampache.org + Copyright (c) 2001 - 2007 Ampache.org All rights reserved. This program is free software; you can redistribute it and/or @@ -28,12 +28,11 @@ * connections, web paths etc.. */ -/*! - @function check_database - @discussion checks the local mysql db - and make sure life is good -*/ -function check_database($host,$username,$pass,$database) { +/** + * check_database + * checks the local mysql db and make sure life is good + */ +function check_database($host,$username,$pass) { $dbh = @mysql_connect($host, $username, $pass); |