Minor fix

This commit is contained in:
Alejandro Gallardo Escobar 2014-10-08 14:56:28 +02:00
parent 0ffc6220aa
commit 97a3664737
1 changed files with 1 additions and 1 deletions

View File

@ -164,7 +164,7 @@ if ($create_downtime || $update_downtime) {
|| ($type_periodicity == 'monthly' && $periodically_day_from == $periodically_day_to && $periodically_time_from >= $periodically_time_to))) {
ui_print_error_message(__('Not created. Error inserting data') . ". " .__('The end time must be higher than the start time'));
}
else if ($type_execution == 'periodically' && $type_periodicity == 'monthly' && $periodically_day_from >= $periodically_day_to) {
else if ($type_execution == 'periodically' && $type_periodicity == 'monthly' && $periodically_day_from > $periodically_day_to) {
ui_print_error_message(__('Not created. Error inserting data') . ". " .__('The end day must be higher than the start day'));
}
else {