diff options
author | Marvin Thomas Rabe <m.rabe@echtzeitraum.de> | 2011-10-08 13:28:01 +0200 |
---|---|---|
committer | Marvin Thomas Rabe <m.rabe@echtzeitraum.de> | 2011-10-08 13:28:01 +0200 |
commit | f3f5d775b519c12e56f4c6db8ca8ccf87c68f19d (patch) | |
tree | fbc06f213ebbe364c8309f202c18cdb53c969197 /apps/calendar/templates | |
parent | 39e7db7db4174e4d76c77c47a7b4aab6e3bdda37 (diff) | |
download | nextcloud-server-f3f5d775b519c12e56f4c6db8ca8ccf87c68f19d.tar.gz nextcloud-server-f3f5d775b519c12e56f4c6db8ca8ccf87c68f19d.zip |
removed description field for calendar
Diffstat (limited to 'apps/calendar/templates')
-rw-r--r-- | apps/calendar/templates/part.editcalendar.php | 6 | ||||
-rw-r--r-- | apps/calendar/templates/part.import.php | 8 |
2 files changed, 1 insertions, 13 deletions
diff --git a/apps/calendar/templates/part.editcalendar.php b/apps/calendar/templates/part.editcalendar.php index c2c22913bee..b4ff573ec81 100644 --- a/apps/calendar/templates/part.editcalendar.php +++ b/apps/calendar/templates/part.editcalendar.php @@ -26,12 +26,6 @@ </tr> <?php endif; ?> <tr> - <th><?php echo $l->t('Description') ?></th> - <td> - <textarea id="description_<?php echo $_['calendar']['id'] ?>"><?php echo $_['calendar']['description'] ?></textarea> - </td> -</tr> -<tr> <th><?php echo $l->t('Calendar color') ?></th> <td> <select id="calendarcolor_<?php echo $_['calendar']['id'] ?>" class="colorpicker"> diff --git a/apps/calendar/templates/part.import.php b/apps/calendar/templates/part.import.php index 37493674371..b8805e6b6ef 100644 --- a/apps/calendar/templates/part.import.php +++ b/apps/calendar/templates/part.import.php @@ -31,11 +31,6 @@ foreach($calendars as $calendar){ <input id="displayname" type="text" value=""> </td> </tr> -<th><?php echo $l->t('Description') ?></th> -<td> -<textarea id="description"></textarea> -</td> -</tr> </table> <!-- end of modified part --> <br><br> @@ -65,8 +60,7 @@ function importcal(importtype){ } if(importtype == "new"){ var calname = $("#displayname").val(); - var description = $("#description").val(); - $.post(OC.filePath('calendar', '', 'import.php'), {'import':'new', 'calname':calname, 'description':description, 'path':path, 'file':file}, function(){ + $.post(OC.filePath('calendar', '', 'import.php'), {'import':'new', 'calname':calname, 'path':path, 'file':file}, function(){ $("#importdialog").dialog('destroy').remove(); $("#importdialogholder").remove(); }); |