diff options
author | jouni%heikniemi.net <> | 2002-06-22 19:32:38 +0200 |
---|---|---|
committer | jouni%heikniemi.net <> | 2002-06-22 19:32:38 +0200 |
commit | b6436da1f76de0b52fc598516f9e3024082ef4c1 (patch) | |
tree | 9b312687147882a24c506e4552ef1088029d196d /template/en/default | |
parent | fd1d1d79fddbf5a29fcce63c891d8ab17415c9e8 (diff) | |
download | bugzilla-b6436da1f76de0b52fc598516f9e3024082ef4c1.tar.gz bugzilla-b6436da1f76de0b52fc598516f9e3024082ef4c1.tar.xz |
Bug 152283: Show votes by bug -list has a logged out footer.
2xr=bbaetz
Diffstat (limited to 'template/en/default')
-rw-r--r-- | template/en/default/bug/votes/list-for-bug.html.tmpl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/template/en/default/bug/votes/list-for-bug.html.tmpl b/template/en/default/bug/votes/list-for-bug.html.tmpl index 4da030e8f..32a786aa8 100644 --- a/template/en/default/bug/votes/list-for-bug.html.tmpl +++ b/template/en/default/bug/votes/list-for-bug.html.tmpl @@ -38,15 +38,15 @@ <th>Number of votes</th> </tr> - [% FOREACH user = users %] + [% FOREACH voter = users %] <tr> <td> - <a href="votes.cgi?action=show_user&user=[% user.name FILTER url_quote %]"> - [% user.name FILTER html %] + <a href="votes.cgi?action=show_user&user=[% voter.name FILTER url_quote %]"> + [% voter.name FILTER html %] </a> </td> <td align="right"> - [% user.count %] + [% voter.count %] </td> </tr> [% END %] |