From 659202bf6f2a521631ead344da042b5d76765ecb Mon Sep 17 00:00:00 2001 From: Moritz Strohm <strohm@data-quest.de> Date: Thu, 19 Dec 2024 13:55:31 +0100 Subject: [PATCH] drop Sonstige from PERS_TERMIN_KAT again, fixes #4838 --- app/controllers/calendar/date.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/app/controllers/calendar/date.php b/app/controllers/calendar/date.php index 94385503242..39284d979d7 100644 --- a/app/controllers/calendar/date.php +++ b/app/controllers/calendar/date.php @@ -11,9 +11,6 @@ class Calendar_DateController extends AuthenticatedController foreach ($GLOBALS['PERS_TERMIN_KAT'] as $key => $data) { $options[$key] = $data['name']; } - if (!array_key_exists(255, $options)) { - $options[255] = _('Sonstige'); - } return $options; } -- GitLab