diff options
-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 %] |