diff options
author | jocuri%softhome.net <> | 2005-01-09 03:22:44 +0100 |
---|---|---|
committer | jocuri%softhome.net <> | 2005-01-09 03:22:44 +0100 |
commit | 2c8ad01edb6ac6e8f040e302c14aa0e1ad140ef2 (patch) | |
tree | cbd8ac8d62de2d48e16bc599f431c14aa9e24bc2 /template | |
parent | 24871f00a5079571009d6bf48fe8469cebe8f253 (diff) | |
download | bugzilla-2c8ad01edb6ac6e8f040e302c14aa0e1ad140ef2.tar.gz bugzilla-2c8ad01edb6ac6e8f040e302c14aa0e1ad140ef2.tar.xz |
Patch for bug 277013: provides a fix for the SQL error that appears when a user's vote confirms a bug; patch by Frédéric Buclin <LpSolit@netscape.net>, r=wurblzap, a=justdave.
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/bug/votes/list-for-user.html.tmpl | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/template/en/default/bug/votes/list-for-user.html.tmpl b/template/en/default/bug/votes/list-for-user.html.tmpl index 27551f19d..9bb3a1dd6 100644 --- a/template/en/default/bug/votes/list-for-user.html.tmpl +++ b/template/en/default/bug/votes/list-for-user.html.tmpl @@ -21,10 +21,12 @@ [% PROCESS global/variables.none.tmpl %] -[% h2 = voting_user.login FILTER html %] -[% PROCESS global/header.html.tmpl - title = "Show Votes" - %] +[% IF !header_done %] + [% h2 = voting_user.login FILTER html %] + [% PROCESS global/header.html.tmpl title = "Show Votes" %] +[% ELSE %] + <hr> +[% END %] [% canedit = 1 IF voting_user.login == user.login %] |