diff options
author | lpsolit%gmail.com <> | 2005-08-31 01:39:05 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2005-08-31 01:39:05 +0200 |
commit | 94b607da55ba701e1488a2654a9452acb7ad729b (patch) | |
tree | 334b5feb35f01a36d9f023563ab570f0f80039d4 /template/en | |
parent | d6a99db8228a3bee2ee1771fd37e7b45521a6310 (diff) | |
download | bugzilla-94b607da55ba701e1488a2654a9452acb7ad729b.tar.gz bugzilla-94b607da55ba701e1488a2654a9452acb7ad729b.tar.xz |
Bug 306271: Group.pm needs a get_all_groups() routine - Patch by Frédéric Buclin <LpSolit@gmail.com> r=joel a=myk
Diffstat (limited to 'template/en')
-rw-r--r-- | template/en/default/admin/groups/list.html.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/template/en/default/admin/groups/list.html.tmpl b/template/en/default/admin/groups/list.html.tmpl index 9e6520244..c183e4aff 100644 --- a/template/en/default/admin/groups/list.html.tmpl +++ b/template/en/default/admin/groups/list.html.tmpl @@ -27,7 +27,7 @@ # - id: number. The ID of the group. # - name: string. The name of the group. # - description: string. The description of the group. - # - regexp: string. The user regexp for the given group. + # - userregexp: string. The user regexp for the given group. # - isactive: boolean int. Specifies if the group is active or not. # - isbuggroup: boolean int. Specifies if it can be used for bugs. #%] @@ -52,7 +52,7 @@ <tr> <td>[% group.name FILTER html %]</td> <td>[% group.description FILTER html %]</td> - <td>[% group.regexp FILTER html %] </td> + <td>[% group.userregexp FILTER html %] </td> <td align="center"> [% IF (group.isactive != 0) && (group.isbuggroup) %] |