fixed minor error function reporting

(cherry picked from commit d50f1f8f3a)
This commit is contained in:
daniel 2016-12-30 09:30:16 +01:00
parent b972d10b1f
commit 331f8f3e2f
1 changed files with 9 additions and 15 deletions

View File

@ -1972,24 +1972,18 @@ else {
"reporting_" . $activeTab . "_tab", false, $buttons);
}
if ($resultOperationDB !== null) {
$err = '';
/*
if($_POST[sla_min]==''){
$err.='You must enter some character in SLA min field<br>';
switch ($_POST['type']) {
case 'custom_graph':
$err.='You must enter custom graph';
break;
case 'SLA':
$err.='You must enter some character in SLA limit field';
default:
$err.='';
break;
}
if($_POST[sla_max]==''){
$err.='You must enter some character in SLA max field<br>';
}
*/
if($_POST[sla_limit]==''){
$err.='You must enter some character in SLA limit field';
}
ui_print_result_message ($resultOperationDB, __('Successfull action'), __('Unsuccessfull action<br><br>'.$err));
}