Skip to content

Commit

Permalink
[jan] Show timezone abbreviations in event dialog too.
Browse files Browse the repository at this point in the history
  • Loading branch information
yunosh committed Mar 23, 2016
1 parent 26fb9b9 commit bacc461
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions kronolith/docs/CHANGES
Expand Up @@ -2,6 +2,7 @@
v4.3.0-git
----------

[jan] Show timezone abbreviations in event dialog too.
[jan] Show users' full names in share dialogs.
[mjr] Support for subset of features of ActiveSync 16.0.
[mjr] Disconnect exceptions from base event when series changes.
Expand Down
4 changes: 3 additions & 1 deletion kronolith/package.xml
Expand Up @@ -33,6 +33,7 @@
</stability>
<license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
<notes>
* [jan] Show timezone abbreviations in event dialog too.
* [jan] Show users&apos; full names in share dialogs.
* [mjr] Support for subset of features of ActiveSync 16.0.
* [mjr] Disconnect exceptions from base event when series changes.
Expand Down Expand Up @@ -987,7 +988,7 @@
<package>
<name>Horde_Nls</name>
<channel>pear.horde.org</channel>
<min>2.0.0</min>
<min>2.3.0</min>
<max>3.0.0alpha1</max>
<exclude>3.0.0alpha1</exclude>
</package>
Expand Down Expand Up @@ -2762,6 +2763,7 @@
<date>2016-03-01</date>
<license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
<notes>
* [jan] Show timezone abbreviations in event dialog too.
* [jan] Show users&apos; full names in share dialogs.
* [mjr] Support for subset of features of ActiveSync 16.0.
* [mjr] Disconnect exceptions from base event when series changes.
Expand Down
4 changes: 2 additions & 2 deletions kronolith/templates/dynamic/edit.inc
Expand Up @@ -67,8 +67,8 @@
<label for="kronolithEventTimezone"><?php echo _("Timezone") ?>:</label>
<select name="timezone" id="kronolithEventTimezone" tabindex="7">
<option value=""><?php echo _("Default") ?></option>
<?php foreach (Horde_Nls::getTimezones() as $timezone): ?>
<option value="<?php echo $timezone ?>"><?php echo $timezone ?></option>
<?php foreach (Horde_Nls::getTimezonesWithAbbreviations() as $label => $timezone): ?>
<option value="<?php echo $timezone ?>"><?php echo $label ?></option>
<?php endforeach ?>
</select>
</p>
Expand Down

0 comments on commit bacc461

Please sign in to comment.