diff options
author | lpsolit%gmail.com <> | 2008-08-27 07:32:11 +0000 |
---|---|---|
committer | lpsolit%gmail.com <> | 2008-08-27 07:32:11 +0000 |
commit | 615cfb88c1aae1f8372b323e9c53a84d8c9146fe (patch) | |
tree | d41bf992b9de42c29141e41714b6108866a39204 /template/en/default/list | |
parent | 68c8ee64ec7dc985931f17f98cb83ee153dcd25c (diff) | |
download | bugs-615cfb88c1aae1f8372b323e9c53a84d8c9146fe.tar bugs-615cfb88c1aae1f8372b323e9c53a84d8c9146fe.tar.gz bugs-615cfb88c1aae1f8372b323e9c53a84d8c9146fe.tar.bz2 bugs-615cfb88c1aae1f8372b323e9c53a84d8c9146fe.tar.xz bugs-615cfb88c1aae1f8372b323e9c53a84d8c9146fe.zip |
Bug 182238: Allow users to choose what time zone to display times in - Patch by Frédéric Buclin <LpSolit@gmail.com> r/a=mkanat
Diffstat (limited to 'template/en/default/list')
-rw-r--r-- | template/en/default/list/list.html.tmpl | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/template/en/default/list/list.html.tmpl b/template/en/default/list/list.html.tmpl index 512201c27..37fd0a638 100644 --- a/template/en/default/list/list.html.tmpl +++ b/template/en/default/list/list.html.tmpl @@ -54,11 +54,7 @@ <div class="bz_query_head" align="center"> <span class="bz_query_timestamp"> - [% IF Param('timezone') %] - <b>[% time2str("%a %b %e %Y %T %Z", currenttime, Param('timezone')) %]</b><br> - [% ELSE %] - <b>[% time2str("%a %b %e %Y %T", currenttime) %]</b><br> - [% END %] + <b>[% currenttime FILTER time('%a %b %e %Y %T %Z') FILTER html %]</b><br> </span> [% IF debug %] |