#11682 fixed special days alert

This commit is contained in:
Daniel Cebrian 2023-07-06 16:39:21 +02:00
parent 141c34618e
commit 1dedb96314
1 changed files with 1 additions and 1 deletions

View File

@ -262,7 +262,7 @@ $data[1] = '';
$table_conditions->data[] = $data;
$data[0] = __('Use special days list');
$data[1] = (isset($alert['special_day']) && $alert['special_day'] == 1) ? __('Yes') : __('No');
$data[1] = (isset($template['special_day']) && (int) $template['special_day'] !== 0) ? __('Yes') : __('No');
$table_conditions->data[] = $data;
$data[0] = __('Time threshold');