Skip to content
Snippets Groups Projects
Commit 000d7ba9 authored by Georg Ehrke's avatar Georg Ehrke
Browse files

fix bug in calendar

parent eb7e2d7d
No related branches found
No related tags found
No related merge requests found
...@@ -35,7 +35,7 @@ echo 'Calendar.UI.Share.idtype = "event";' . "\n" . 'Calendar.UI.Share.currentid ...@@ -35,7 +35,7 @@ echo 'Calendar.UI.Share.idtype = "event";' . "\n" . 'Calendar.UI.Share.currentid
<select style="width:140px;" name="calendar"> <select style="width:140px;" name="calendar">
<?php <?php
if (!isset($_['calendar'])) {$_['calendar'] = false;} if (!isset($_['calendar'])) {$_['calendar'] = false;}
echo OCP\html_select_options($_['calendar_options'], $_['calendar'], array('value'=>'id', 'label'=>'displayname')); echo \html_select_options($_['calendar_options'], $_['calendar'], array('value'=>'id', 'label'=>'displayname'));
?> ?>
</select> </select>
</td> </td>
......
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