diff options
author | Byron Jones <bjones@mozilla.com> | 2012-01-03 15:01:20 +0100 |
---|---|---|
committer | Byron Jones <bjones@mozilla.com> | 2012-01-03 15:01:20 +0100 |
commit | 173cf5e3efb836eb0e2ecffc9c87ebe82304cbe5 (patch) | |
tree | ceb9980181e3a8c6d3fa3d0dd9c7d49f530d0e4d /template | |
parent | eca4822f0ad4733af64425c10b9edd1d7ca62772 (diff) | |
download | bugzilla-173cf5e3efb836eb0e2ecffc9c87ebe82304cbe5.tar.gz bugzilla-173cf5e3efb836eb0e2ecffc9c87ebe82304cbe5.tar.xz |
bug 714759: fix IE js syntax error
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/global/user.html.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/template/en/default/global/user.html.tmpl b/template/en/default/global/user.html.tmpl index a6be5eee9..50014bb29 100644 --- a/template/en/default/global/user.html.tmpl +++ b/template/en/default/global/user.html.tmpl @@ -27,8 +27,8 @@ [% FILTER collapse %] [% IF user.id %] <a class="email" href="mailto:[% who.email FILTER html %]" - [% IF user.in_group('editusers') || user.bless_groups.size > 0 %] - onclick="show_admin_username(event, [% who.id FILTER none %], '[% who.email FILTER js %]'); return false" + [% IF who.id && (user.in_group('editusers') || user.bless_groups.size > 0) %] + onclick="show_admin_usermenu(event, [% who.id FILTER none %], '[% who.email FILTER js %]'); return false" [% END %] title="[% who.identity FILTER html %]"> [%- END -%] |