diff --git a/install/database-validation.php b/install/database-validation.php index e7ae6853..5f3c70d9 100644 --- a/install/database-validation.php +++ b/install/database-validation.php @@ -45,7 +45,7 @@ hesk_dbConnect();

One or more columns / tables are not properly configured in your database. Please open a topic at the - PHP Junkyard Forums with this information for assistance.

+ PHP Junkyard Forums with this information for assistance.
@@ -273,14 +273,14 @@ function run_check($sql) { } function output_result($change_title, $success) { - $css_color = 'green'; + $css_color = 'success'; $text = ' Success'; if (!$success) { - $css_color = 'red'; + $css_color = 'danger'; $text = ' Failure'; } - $formatted_text = sprintf('%s%s', $change_title, $css_color, $text); + $formatted_text = sprintf('%s%s', $change_title, $css_color, $text); echo $formatted_text; }