Skip to content
Snippets Groups Projects
Commit 17b375d7 authored by Moritz Strohm's avatar Moritz Strohm Committed by David Siegfried
Browse files

fixed PHP8 warning in app/views/calendar/single/seminar_events, fixes #1754

Closes #1754

Merge request studip/studip!1228
parent 89d5a23c
No related branches found
No related tags found
No related merge requests found
...@@ -99,6 +99,6 @@ ...@@ -99,6 +99,6 @@
_('In dem ausgewählten <b>Semester</b> wurden keine Veranstaltungen belegt.').'<br>'._('Wählen Sie links im <b>Semesterfilter</b> ein anderes Semester aus') _('In dem ausgewählten <b>Semester</b> wurden keine Veranstaltungen belegt.').'<br>'._('Wählen Sie links im <b>Semesterfilter</b> ein anderes Semester aus')
]))?> ]))?>
<? endif ?> <? endif ?>
<? if (is_array($my_bosses) && count($my_bosses)) : ?> <? if (!empty($my_bosses) && is_array($my_bosses) && count($my_bosses)) : ?>
<?= $this->render_partial('my_courses/_deputy_bosses'); ?> <?= $this->render_partial('my_courses/_deputy_bosses'); ?>
<? endif ?> <? endif ?>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment