summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <jan@unhosted.org>2011-10-05 14:32:25 +0200
committerJan-Christoph Borchardt <jan@unhosted.org>2011-10-05 14:32:25 +0200
commit8e532b5ceba379f16210b70e4e193fac160a8b39 (patch)
tree45e50b4137b2e1af49fdf68ff4ad878a56117499
parent2c95c799e6b4b433dccb6efe04fe2c6dc9e5d9f9 (diff)
downloadnextcloud-server-8e532b5ceba379f16210b70e4e193fac160a8b39.tar.gz
nextcloud-server-8e532b5ceba379f16210b70e4e193fac160a8b39.zip
removed extra calendar settings. Also, table layout?
-rw-r--r--apps/calendar/templates/settings.php23
1 files changed, 0 insertions, 23 deletions
diff --git a/apps/calendar/templates/settings.php b/apps/calendar/templates/settings.php
index 3bfda702e9b..19a1a543b46 100644
--- a/apps/calendar/templates/settings.php
+++ b/apps/calendar/templates/settings.php
@@ -36,29 +36,6 @@ OC_UTIL::addStyle('', 'jquery.multiselect');
</select>
</td></tr>
- <tr><td><label for="firstdayofweek" class="bold"><?php echo $l->t('First day of the week');?></label></td><td>
- <select style="display: none;" id="firstdayofweek" name="firstdayofweek">
- <?php
- $weekdays = array("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday");
- for($i = 0;$i <= 6;$i++){
- echo '<option value="'.$i.'" id="select_'.$i.'">' . $l->t($weekdays[$i]) . '</option>';
- }
- ?>
- </select>
- </td></tr>
-
- <tr><td><label for="weekend" class="bold"><?php echo $l->t('Days of weekend');?></label></td><td>
- <select id="weekend" name="weekend[]" style="width: 30em;" multiple="multiple" title="<?php echo $l->t("Weekend"); ?>">
- <?php
- $weekdays = array("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday");
- for($i = 0;$i <= 6;$i++){
- echo '<option value="'.$weekdays[$i].'" id="selectweekend_' . $weekdays[$i] . '">' . $l->t($weekdays[$i]) . '</option>';
- }
- ?>
- </select>
- </td></tr>
-
- <tr><td><label for="duration" class="bold"><?php echo $l->t('Event duration');?></label></td><td><input type="text" maxlength="3" size="3" style="width: 2em;" id="duration" name="duration" /> <?php echo $l->t("Minutes");?></td></tr>
</table>
<?php echo $l->t('Calendar CalDAV syncing address:');?>