diff options
author | Georg Ehrke <dev@georgswebsite.de> | 2012-06-13 22:12:54 +0200 |
---|---|---|
committer | Georg Ehrke <dev@georgswebsite.de> | 2012-06-13 22:13:24 +0200 |
commit | 4ff11308a33289e334caf9e95ef152fe0693b69a (patch) | |
tree | 7c3edace12fc3bbc346511d79aa914adaf217d58 /apps | |
parent | e543ec6eb6351171322630a19b6974c47729bc35 (diff) | |
download | nextcloud-server-4ff11308a33289e334caf9e95ef152fe0693b69a.tar.gz nextcloud-server-4ff11308a33289e334caf9e95ef152fe0693b69a.zip |
fix a ui bug for calendar sharing
Diffstat (limited to 'apps')
-rw-r--r-- | apps/calendar/templates/part.showevent.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/calendar/templates/part.showevent.php b/apps/calendar/templates/part.showevent.php index 3646baf5bb7..8d33d6b8903 100644 --- a/apps/calendar/templates/part.showevent.php +++ b/apps/calendar/templates/part.showevent.php @@ -33,7 +33,7 @@ <select name="calendar" disabled="disabled"> <option> <?php - $calendar = OC_Calendar_App::getCalendar($_['calendar']); + $calendar = OC_Calendar_App::getCalendar($_['calendar'], false, false); echo $calendar['displayname'] . ' ' . $l->t('of') . ' ' . $calendar['userid']; ?> </option> |