diff --git a/pandora_console/include/functions_api.php b/pandora_console/include/functions_api.php index f17170a91d..a2fc33d938 100644 --- a/pandora_console/include/functions_api.php +++ b/pandora_console/include/functions_api.php @@ -99,7 +99,7 @@ function returnError($typeError, $returnType = 'string') { break; default: returnData("string", - array('type' => 'string', 'data' => __($typeError))); + array('type' => 'string', 'data' => __($returnType))); break; } } diff --git a/pandora_console/include/functions_planned_downtimes.php b/pandora_console/include/functions_planned_downtimes.php index eb0b730649..67f9ec9f29 100644 --- a/pandora_console/include/functions_planned_downtimes.php +++ b/pandora_console/include/functions_planned_downtimes.php @@ -666,6 +666,7 @@ function planned_downtimes_stop ($downtime) { function planned_downtimes_created ($values) { global $config; + $check_group = (bool) db_get_value ('id_grupo', 'tgrupo', 'id_grupo', $values['id_group']); $check = (bool) db_get_value ('name', 'tplanned_downtime', 'name', $values['name']); $datetime_from = strtotime ($values['once_date_from'] . ' ' . $values['once_time_from']); @@ -702,6 +703,11 @@ function planned_downtimes_created ($values) { 'message' => __('Not created. Error inserting data') . ". " . __('The end day must be higher than the start day')); } + else if (!$check_group && $values['id_group'] != 0) { + return array('return' => false, + 'message' => __('Not created. Error inserting data') . ". " + . __('Group not exist')); + } else { if (trim(io_safe_output($values['name'])) != '') { if (!$check) {