aboutsummaryrefslogtreecommitdiff
path: root/lib/models/CourseDate.php
diff options
context:
space:
mode:
authorMoritz Strohm <strohm@data-quest.de>2024-11-20 11:48:14 +0000
committerMoritz Strohm <strohm@data-quest.de>2024-11-20 11:48:14 +0000
commit3919ab809eec39b69107b0eee92c48a667e6506a (patch)
treeb30083c4fc07e34a1cacd44ac4ea36dddaef4131 /lib/models/CourseDate.php
parentf73e2918504c4786fe0609b1593971b4a959fa98 (diff)
changed output format of SeminarCycleDate::toString, CourseDate::getFullName and CourseExDate::getFullName and made the output of CourseDateList::toHtml a list with invisible list items, fixes #4889
Closes #4889 Merge request studip/studip!3662
Diffstat (limited to 'lib/models/CourseDate.php')
-rw-r--r--lib/models/CourseDate.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/models/CourseDate.php b/lib/models/CourseDate.php
index f33332e..82dd692 100644
--- a/lib/models/CourseDate.php
+++ b/lib/models/CourseDate.php
@@ -331,7 +331,7 @@ class CourseDate extends SimpleORMap implements PrivacyObject, Event
$string = sprintf(
'%1$s, %2$s - %3$s',
$day_of_week,
- date('d.m.Y H:i', $this->date),
+ date('d.m.y, H:i', $this->date),
$formatted_end
);
}