diff options
author | bugreport%peshkin.net <> | 2004-07-31 11:27:23 +0200 |
---|---|---|
committer | bugreport%peshkin.net <> | 2004-07-31 11:27:23 +0200 |
commit | 4c1db37570469aef2c7cc9f2ad9f859560ca8851 (patch) | |
tree | 17a519e7f08a85993b710ecd6d809bd9e4b40211 /template/en/default/global | |
parent | 1ffd632931b05caea45f9c48079b455d156086be (diff) | |
download | bugzilla-4c1db37570469aef2c7cc9f2ad9f859560ca8851.tar.gz bugzilla-4c1db37570469aef2c7cc9f2ad9f859560ca8851.tar.xz |
Bug 253588: Change Bugzilla->user to be usable even for a logged-out user
patch by erik,joel
r=kiko
a=justdave
Diffstat (limited to 'template/en/default/global')
-rw-r--r-- | template/en/default/global/useful-links.html.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/template/en/default/global/useful-links.html.tmpl b/template/en/default/global/useful-links.html.tmpl index b37ef4c35..f148d7d2f 100644 --- a/template/en/default/global/useful-links.html.tmpl +++ b/template/en/default/global/useful-links.html.tmpl @@ -38,14 +38,14 @@ <a href="report.cgi">Reports</a> - [% IF user %] + [% IF user.id %] [% email = user.login FILTER url_quote %] | <a href="request.cgi?requester=[% email %]&requestee=[% email %]&do_union=1&group=type">My Requests</a> [% ELSE %] | <a href="request.cgi">Requests</a> [% END %] - [% IF user && Param('usevotes') %] + [% IF user.id && Param('usevotes') %] | <a href="votes.cgi?action=show_user">My Votes</a> [% END %] |