From c0ea7ec4215c8c66a7c947f24095f611fffa29f5 Mon Sep 17 00:00:00 2001
From: Moritz Strohm <strohm@data-quest.de>
Date: Mon, 18 Mar 2024 20:58:13 +0000
Subject: [PATCH] CalendarDate::getRepetitionInputHtml: set repetition end date
 to the end of the original date for dates with neverending repetition, fixes
 #3810

Closes #3810

Merge request studip/studip!2706
---
 lib/models/calendar/CalendarDate.class.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/models/calendar/CalendarDate.class.php b/lib/models/calendar/CalendarDate.class.php
index 167efd1ee47..bb15ed823f8 100644
--- a/lib/models/calendar/CalendarDate.class.php
+++ b/lib/models/calendar/CalendarDate.class.php
@@ -818,7 +818,7 @@ class CalendarDate extends SimpleORMap implements PrivacyObject
             $repetition_dow_week = '1';
         } else {
 
-            if ($this->repetition_end) {
+            if ($this->repetition_end && intval($this->repetition_end) !== self::NEVER_ENDING) {
                 $repetition_end_date = htmlReady(date('d.m.Y', $this->repetition_end));
             } else {
                 //Provide a good default value in case the user wants to enable or change the repetition:
-- 
GitLab