diff options
-rw-r--r-- | apps/calendar/templates/part.showevent.php | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/apps/calendar/templates/part.showevent.php b/apps/calendar/templates/part.showevent.php index 3acba45723f..43092e31954 100644 --- a/apps/calendar/templates/part.showevent.php +++ b/apps/calendar/templates/part.showevent.php @@ -30,15 +30,10 @@ </td> <th width="75px"> <?php echo $l->t("Calendar");?>:</th> <td> - <select name="calendar" disabled="disabled"> - <option> - <?php - $calendar = OC_Calendar_App::getCalendar($_['calendar'], false, false); - echo $calendar['displayname'] . ' ' . $l->t('of') . ' ' . $calendar['userid']; - ?> - </option> - - </select> + <?php + $calendar = OC_Calendar_App::getCalendar($_['calendar'], false, false); + echo $calendar['displayname'] . ' ' . $l->t('of') . ' ' . $calendar['userid']; + ?> </td> <th width="75px"> </th> <td> |