diff options
author | Georg Ehrke <dev@georgswebsite.de> | 2012-05-09 11:53:02 +0200 |
---|---|---|
committer | Georg Ehrke <dev@georgswebsite.de> | 2012-05-09 11:53:16 +0200 |
commit | 000d7ba97535f470f30be44e02140401b24b43e2 (patch) | |
tree | 5bd1a07cf5680259403dcafb3c002be775b0a120 | |
parent | eb7e2d7d354bfb7214f1aa07fad1b348656cc916 (diff) | |
download | nextcloud-server-000d7ba97535f470f30be44e02140401b24b43e2.tar.gz nextcloud-server-000d7ba97535f470f30be44e02140401b24b43e2.zip |
fix bug in calendar
-rwxr-xr-x | apps/calendar/templates/part.eventform.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/calendar/templates/part.eventform.php b/apps/calendar/templates/part.eventform.php index b3bbf7a375b..d67094ee57c 100755 --- a/apps/calendar/templates/part.eventform.php +++ b/apps/calendar/templates/part.eventform.php @@ -35,7 +35,7 @@ echo 'Calendar.UI.Share.idtype = "event";' . "\n" . 'Calendar.UI.Share.currentid <select style="width:140px;" name="calendar"> <?php 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> </td> |