diff options
author | mkanat%bugzilla.org <> | 2007-07-14 21:54:59 +0200 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2007-07-14 21:54:59 +0200 |
commit | c62b0d1928f8b45a3f624b9b8c01948a9626c8cb (patch) | |
tree | 8477d0e4a310643941569f2695f1584a1877ac0d /template/en/default/global | |
parent | 65d406682dbaaa2a50b468387a22353a10a84bbd (diff) | |
download | bugzilla-c62b0d1928f8b45a3f624b9b8c01948a9626c8cb.tar.gz bugzilla-c62b0d1928f8b45a3f624b9b8c01948a9626c8cb.tar.xz |
Bug 388045: Move updating of cc_accessible and reporter_accessible into Bugzilla::Bug (from process_bug)
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=LpSolit
Diffstat (limited to 'template/en/default/global')
-rw-r--r-- | template/en/default/global/user-error.html.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/template/en/default/global/user-error.html.tmpl b/template/en/default/global/user-error.html.tmpl index 7eac20cf2..072a10a56 100644 --- a/template/en/default/global/user-error.html.tmpl +++ b/template/en/default/global/user-error.html.tmpl @@ -651,10 +651,10 @@ [% title = "Not allowed" %] You tried to change the <strong>[% field_descs.$field FILTER html %]</strong> field - [% IF oldvalue %] + [% IF oldvalue.defined %] from <em>[% oldvalue FILTER html %]</em> [% END %] - [% IF newvalue %] + [% IF newvalue.defined %] to <em>[% newvalue FILTER html %]</em> [% END %] , but only |