diff options
author | bugreport%peshkin.net <> | 2005-11-20 08:47:25 +0100 |
---|---|---|
committer | bugreport%peshkin.net <> | 2005-11-20 08:47:25 +0100 |
commit | 740e03663517cf50d12fa2795b883615083ef6f0 (patch) | |
tree | 03f896631d807bc22c7294c7bc07e48ecaa53224 /template/en | |
parent | da94d07717910608beb2559b4a2e3aeb946f7022 (diff) | |
download | bugzilla-740e03663517cf50d12fa2795b883615083ef6f0.tar.gz bugzilla-740e03663517cf50d12fa2795b883615083ef6f0.tar.xz |
Bug 315332 fix several bugs in process_bug.cgi when 'strict_isolation' is on
Patch by Joel Peshkin <bugreport@peshkin.net>
r=lpsolit, a=justdave
Diffstat (limited to 'template/en')
-rw-r--r-- | template/en/default/global/user-error.html.tmpl | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/template/en/default/global/user-error.html.tmpl b/template/en/default/global/user-error.html.tmpl index ac019b681..be86ae506 100644 --- a/template/en/default/global/user-error.html.tmpl +++ b/template/en/default/global/user-error.html.tmpl @@ -670,8 +670,19 @@ [% ELSIF error == "invalid_user_group" %] [% title = "Invalid User Group" %] - User '[% user FILTER html %]' is not able to edit the - [% terms.bug %] '[% bug_id FILTER html %]'. + [% IF users.size > 1 %] Users [% ELSE %] User [% END %] + '[% users.join(', ') FILTER html %]' + [% IF users.size > 1 %] are [% ELSE %] is [% END %] + not able to edit the + [% IF product %] + '[% product FILTER html %]' + [% END %] + [%+ field_descs.product FILTER html %] + [% IF bug_id %] + for [% terms.bug %] '[% bug_id FILTER html %]'. + [% ELSE %] + for at least one [% terms.bug %] being changed. + [% END %] [% ELSIF error == "invalid_username" %] [% title = "Invalid Username" %] |