diff options
author | lpsolit%gmail.com <> | 2006-05-30 01:11:03 +0000 |
---|---|---|
committer | lpsolit%gmail.com <> | 2006-05-30 01:11:03 +0000 |
commit | 422a379558b0738d842c1e5b997ef8357ff18ac4 (patch) | |
tree | 23ec4794177a623072f8150c5f0d38dffb8fafe3 /template | |
parent | 853c40ff96d824455483f3ff8d1d2f6c1710070c (diff) | |
download | bugs-422a379558b0738d842c1e5b997ef8357ff18ac4.tar bugs-422a379558b0738d842c1e5b997ef8357ff18ac4.tar.gz bugs-422a379558b0738d842c1e5b997ef8357ff18ac4.tar.bz2 bugs-422a379558b0738d842c1e5b997ef8357ff18ac4.tar.xz bugs-422a379558b0738d842c1e5b997ef8357ff18ac4.zip |
Bug 324784: editgroups.cgi should make sure groups it edits/removes are not used by editparams.cgi (in data/params) - Patch by Frédéric Buclin <LpSolit@gmail.com> r=wicked a=justdave
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/admin/groups/list.html.tmpl | 18 | ||||
-rw-r--r-- | template/en/default/global/user-error.html.tmpl | 14 |
2 files changed, 29 insertions, 3 deletions
diff --git a/template/en/default/admin/groups/list.html.tmpl b/template/en/default/admin/groups/list.html.tmpl index f32e715d6..64e30f9e4 100644 --- a/template/en/default/admin/groups/list.html.tmpl +++ b/template/en/default/admin/groups/list.html.tmpl @@ -84,10 +84,22 @@ content => " " }] overrides.action = [ { - match_value => "0" - match_field => 'isbuggroup' + match_value => Param("chartgroup") + match_field => 'name' override_content => 1 - content => " " + content => "(used as the 'chartgroup')" + }, + { + match_value => Param("insidergroup") + match_field => 'name' + override_content => 1 + content => "(used as the 'insidergroup')" + }, + { + match_value => Param("timetrackinggroup") + match_field => 'name' + override_content => 1 + content => "(used as the 'timetrackinggroup')" }, { match_value => "1" diff --git a/template/en/default/global/user-error.html.tmpl b/template/en/default/global/user-error.html.tmpl index ee7f6c17d..ac1bca1c2 100644 --- a/template/en/default/global/user-error.html.tmpl +++ b/template/en/default/global/user-error.html.tmpl @@ -519,6 +519,20 @@ [% title = "The group already exists" %] The group [% name FILTER html %] already exists. + [% ELSIF error == "group_has_special_role" %] + [% title = "Group not deletable" %] + [% IF groups.size == 1 %] + [% attr = "it" %] + [% param = "parameter" %] + [% ELSE %] + [% attr = "them" %] + [% param = "parameters" %] + [% END %] + The group '[% name FILTER html %]' is used by the + '[% groups.join("' and '") FILTER html %]' [% param FILTER html %]. + In order to delete this group, you first have to change the + [%+ param FILTER html %] to make [% attr FILTER html %] point to another group. + [% ELSIF error == "group_not_specified" %] [% title = "Group not specified" %] No group was specified. |