diff options
author | timeless%mozdev.org <> | 2006-12-29 03:01:02 +0100 |
---|---|---|
committer | timeless%mozdev.org <> | 2006-12-29 03:01:02 +0100 |
commit | b49050f9ce6849fe6b86386d89530df67b17d8c9 (patch) | |
tree | 07c53505f9fe91509af9cba624d6b59436dbc3eb /template/en/default/admin/groups | |
parent | 520b20333ccc67dd1d5e76c384a0c36941337008 (diff) | |
download | bugzilla-b49050f9ce6849fe6b86386d89530df67b17d8c9.tar.gz bugzilla-b49050f9ce6849fe6b86386d89530df67b17d8c9.tar.xz |
Bug 363915 The group currently being edited should not be linkified, in editgroups.cgi
r=lpsolit a=justdave
Diffstat (limited to 'template/en/default/admin/groups')
-rw-r--r-- | template/en/default/admin/groups/edit.html.tmpl | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/template/en/default/admin/groups/edit.html.tmpl b/template/en/default/admin/groups/edit.html.tmpl index 6c5771661..ad59ac28b 100644 --- a/template/en/default/admin/groups/edit.html.tmpl +++ b/template/en/default/admin/groups/edit.html.tmpl @@ -153,6 +153,11 @@ <input type="checkbox" name="grp-[% group.grpid FILTER html %]" [% group.grpmember ? "checked " : "" %]value="1"> <input type="hidden" name="oldgrp-[% group.grpid FILTER html %]" value="[% group.grpmember FILTER html %]"> </td> + <td align="left" class="groupname"> + <a href="[% "editgroups.cgi?action=changeform&group=${group.grpid}" FILTER html %]"> + [% group.grpnam FILTER html %] + </a> + </td> [% ELSE %] <td> <input type="hidden" name="oldbless-[% group.grpid FILTER html %]" value="0"> @@ -160,12 +165,12 @@ <td> <input type="hidden" name="oldgrp-[% group.grpid FILTER html %]" value="0"> </td> + <td align="left" class="groupname"> + <em> + [% group.grpnam FILTER html %] + </em> + </td> [% END %] - <td align="left" class="groupname"> - <a href="[% "editgroups.cgi?action=changeform&group=${group.grpid}" FILTER html %]"> - [% group.grpnam FILTER html %] - </a> - </td> <td align="left" class="groupdesc">[% group.grpdesc FILTER html_light %]</td> </tr> [% END %] |