Kalender Bugfix

* 1 day Reminder Checkbox Bug behoben
This commit is contained in:
Daniel Spitzer
2025-02-05 20:44:33 +01:00
parent c6d3a98b3d
commit f8d0264d6b
2 changed files with 6 additions and 2 deletions

View File

@@ -694,7 +694,7 @@ WHERE `TimerecordingCategory`.`hourday`!='1' AND `TimerecordingCategory`.`hourda
if (($r->customer_info_type_text)) {
$customer_info_type_text = $r->customer_info_type_text;
}
if ($r->customer_info_reminder_check) {
if ($r->customer_info_reminder_check || $r->customer_info_reminder_check == 0) {
$updateArray['customer_info_reminder'] = $r->customer_info_reminder_check;
}
$customerJson = array('customer_info_type' => $customer_info_type, 'customer_info_text' => $customer_info_text, 'customer_info_type_text' => $customer_info_type_text);