diff options
author | gerv%gerv.net <> | 2003-09-07 04:23:09 +0200 |
---|---|---|
committer | gerv%gerv.net <> | 2003-09-07 04:23:09 +0200 |
commit | 026539311662235ea26f5f3cfe885322846db6fb (patch) | |
tree | 97ded73af263f79157ec928cc0fc56c82e8b9334 /template/en/default/account | |
parent | 94266c521b3e388b41f3dd6f74948a9ec71997d5 (diff) | |
download | bugzilla-026539311662235ea26f5f3cfe885322846db6fb.tar.gz bugzilla-026539311662235ea26f5f3cfe885322846db6fb.tar.xz |
Bug 207044 - Filter more template directives. None of these are security bugs, but they need fixing anyway. Patch by gerv; r,a=justdave.
Diffstat (limited to 'template/en/default/account')
-rw-r--r-- | template/en/default/account/prefs/account.html.tmpl | 4 | ||||
-rw-r--r-- | template/en/default/account/prefs/email.html.tmpl | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/template/en/default/account/prefs/account.html.tmpl b/template/en/default/account/prefs/account.html.tmpl index 798bb8e40..70190048a 100644 --- a/template/en/default/account/prefs/account.html.tmpl +++ b/template/en/default/account/prefs/account.html.tmpl @@ -74,7 +74,7 @@ </tr> <tr> <th align="right">Change request expires:</th> - <td>[% login_change_date %]</td> + <td>[% login_change_date FILTER time %]</td> </tr> [% ELSE %] <tr> @@ -83,7 +83,7 @@ </tr> <tr> <th align="right">Completion date:</th> - <td>[% login_change_date %]</td> + <td>[% login_change_date FILTER time %]</td> </tr> [% END %] [% ELSE %] diff --git a/template/en/default/account/prefs/email.html.tmpl b/template/en/default/account/prefs/email.html.tmpl index fa6295e72..24853a726 100644 --- a/template/en/default/account/prefs/email.html.tmpl +++ b/template/en/default/account/prefs/email.html.tmpl @@ -57,7 +57,8 @@ <tr> <th align="right">Users to watch:</th> <td> - <input size="35" name="watchedusers" value="[% watchedusers %]"> + <input size="35" name="watchedusers" + value="[% watchedusers FILTER html %]"> </td> </tr> [% END %] |