diff options
author | bugreport%peshkin.net <> | 2005-10-19 06:12:45 +0200 |
---|---|---|
committer | bugreport%peshkin.net <> | 2005-10-19 06:12:45 +0200 |
commit | 89222752d44a4c99e6b901e95adf9e613d705815 (patch) | |
tree | e7432b5b71d968e55f20fb04c412b524395ba85b /template | |
parent | 6372dbd5d9f79a86989897a14647ef5a4b0363eb (diff) | |
download | bugzilla-89222752d44a4c99e6b901e95adf9e613d705815.tar.gz bugzilla-89222752d44a4c99e6b901e95adf9e613d705815.tar.xz |
Bug 141593 You can add/remove dependencies on bugs you can't see
Patch by Joel Peshkin <bugreport@peshkin.net>
r=lpsolit, a=justdave
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/global/user-error.html.tmpl | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/template/en/default/global/user-error.html.tmpl b/template/en/default/global/user-error.html.tmpl index 8646100da..09f3d6e8a 100644 --- a/template/en/default/global/user-error.html.tmpl +++ b/template/en/default/global/user-error.html.tmpl @@ -524,8 +524,13 @@ [% title = "Not allowed" %] You tried to change the <strong>[% field_descs.$field FILTER html %]</strong> field - from <em>[% oldvalue FILTER html %]</em> to - <em>[% newvalue FILTER html %]</em>, but only + [% IF oldvalue %] + from <em>[% oldvalue FILTER html %]</em> + [% END %] + [% IF newvalue %] + to <em>[% newvalue FILTER html %]</em> + [% END %] + , but only [% IF privs < 3 %] the assignee [% IF privs < 2 %] or reporter [% END %] |