Fixed bug suppressing any output when mysql is not installed/enabled.

This commit is contained in:
Savetheinternet 2010-12-01 21:39:34 +11:00
parent 74e88bb664
commit 9f9861ad20

View File

@ -43,6 +43,7 @@
// Database
title('Database');
if(extension_loaded('mysql')) {
if($sql = @mysql_connect(MY_SERVER, MY_USER, MY_PASSWORD)) {
$body .= check('Connection to server.', 'ok');
if(@mysql_select_db(MY_DATABASE, $sql))
@ -55,6 +56,7 @@
$body .= check('Connection to server.', 'error');
$todo[] = 'instance-config.php: Check database configuration.';
}
}
// Configuration
title('Configuration');