Skip to content
Snippets Groups Projects
Commit ef64cd30 authored by A. Täffner's avatar A. Täffner
Browse files

fixed a missing semikolon, colored the warning message

parent 3da03977
No related branches found
No related tags found
No related merge requests found
...@@ -431,10 +431,10 @@ function check_service_config_state($servicename, $detected_value) { ...@@ -431,10 +431,10 @@ function check_service_config_state($servicename, $detected_value) {
else $current_state = 0; else $current_state = 0;
if ($detected_value != $current_state) { if ($detected_value != $current_state) {
$answer = $inst->simple_query('Service \''.$servicename.'\' '.($detected_value ? 'has been' : 'has not been').' detected ('.($current_state ? 'strongly recommended, currently enabled' : 'currently disabled').') do you want to '.($detected_value ? 'enable and configure' : 'disable').' it? ', array('yes', 'no'), ($current_state ? 'yes' : 'no'), 'svc_detect_change_'.$servicename) $answer = $inst->simple_query('Service \''.$servicename.'\' '.($detected_value ? 'has been' : 'has not been').' detected ('.($current_state ? 'strongly recommended, currently enabled' : 'currently disabled').') do you want to '.($detected_value ? 'enable and configure' : 'disable').' it? ', array('yes', 'no'), ($current_state ? 'yes' : 'no'), 'svc_detect_change_'.$servicename);
if ($answer == 'yes') return $detected_value; if ($answer == 'yes') return $detected_value;
else { else {
if ($servicename == 'web_server') echo "If ISPConfig-Panel is installed on this Server we will configure the Web Server anyways but will not enable it in ISPConfig.\n"; if ($servicename == 'web_server') echo "\033[0;33mWARNING: If ISPConfig-Panel is installed on this Server we will configure the Web Server anyways but will not enable it in ISPConfig.\033[0m\n\n";
return $current_state; return $current_state;
} }
} else return $current_state; } else return $current_state;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment