diff options
author | Tom Needham <needham.thomas@gmail.com> | 2012-03-17 12:41:16 +0000 |
---|---|---|
committer | Tom Needham <needham.thomas@gmail.com> | 2012-03-17 12:41:16 +0000 |
commit | 122f7e4c2f4a95f904d052059e81ac855fbd2c3c (patch) | |
tree | 723befa0253efbf2100dfe8c93b9021aea744d16 | |
parent | 8e22823501e702727daae4b6cd25fb81965c6f83 (diff) | |
download | nextcloud-server-122f7e4c2f4a95f904d052059e81ac855fbd2c3c.tar.gz nextcloud-server-122f7e4c2f4a95f904d052059e81ac855fbd2c3c.zip |
Dont truncate the time format
-rw-r--r-- | apps/calendar/templates/settings.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/calendar/templates/settings.php b/apps/calendar/templates/settings.php index f74a45203e1..fb2a04a6498 100644 --- a/apps/calendar/templates/settings.php +++ b/apps/calendar/templates/settings.php @@ -31,7 +31,7 @@ </select><input type="checkbox" name="timezonedetection" id="timezonedetection"><label for="timezonedetection"><?php echo $l->t('Check always for changes of the timezone'); ?></label></td></tr> <tr><td><label for="timeformat" class="bold"><?php echo $l->t('Timeformat');?></label></td><td> - <select style="display: none;" id="timeformat" title="<?php echo "timeformat"; ?>" name="timeformat"> + <select style="display: none; width: 60px;" id="timeformat" title="<?php echo "timeformat"; ?>" name="timeformat"> <option value="24" id="24h"><?php echo $l->t("24h"); ?></option> <option value="ampm" id="ampm"><?php echo $l->t("12h"); ?></option> </select> |