diff options
author | lpsolit%gmail.com <> | 2009-01-29 22:00:24 +0100 |
---|---|---|
committer | lpsolit%gmail.com <> | 2009-01-29 22:00:24 +0100 |
commit | 25e6018ac8a6cf1a99b299fe60ce6c5b1e1d61e6 (patch) | |
tree | ab8f7dd72f89122752a028e6724467984fbe4851 | |
parent | b5ae8cde2a4c1dc1fe6359690be9044ecb8b0b07 (diff) | |
download | bugzilla-25e6018ac8a6cf1a99b299fe60ce6c5b1e1d61e6.tar.gz bugzilla-25e6018ac8a6cf1a99b299fe60ce6c5b1e1d61e6.tar.xz |
Bug 473201: config.rdf.tmpl flag_type should include group information - Patch by Frank Becker <Frank@Frank-Becker.de> r/a=LpSolit
-rw-r--r-- | template/en/default/config.rdf.tmpl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/template/en/default/config.rdf.tmpl b/template/en/default/config.rdf.tmpl index 84465ddd5..e8050489a 100644 --- a/template/en/default/config.rdf.tmpl +++ b/template/en/default/config.rdf.tmpl @@ -224,6 +224,10 @@ <bz:requestable>[% flag_type.is_requestable FILTER html %]</bz:requestable> <bz:specifically_requestable>[% flag_type.is_requesteeble FILTER html %]</bz:specifically_requestable> <bz:multiplicable>[% flag_type.is_multiplicable FILTER html %]</bz:multiplicable> + [% IF user.in_group("editcomponents") %] + <bz:grant_group>[% flag_type.grant_group.name FILTER html %]</bz:grant_group> + <bz:request_group>[% flag_type.request_group.name FILTER html %]</bz:request_group> + [% END %] </bz:flag_type> </li> [% END %] |