diff options
author | lpsolit%gmail.com <> | 2009-10-26 11:31:52 +0000 |
---|---|---|
committer | lpsolit%gmail.com <> | 2009-10-26 11:31:52 +0000 |
commit | 14bd3c428235cbaf69dc84e7d749d0258eeb7003 (patch) | |
tree | dbd36c67a20b410a7a242793a7fa60be3ef99ade /template | |
parent | Bug 521043: Release Notes for Bugzilla 3.4.3 (diff) | |
download | bugzilla-14bd3c428235cbaf69dc84e7d749d0258eeb7003.tar.gz bugzilla-14bd3c428235cbaf69dc84e7d749d0258eeb7003.tar.bz2 bugzilla-14bd3c428235cbaf69dc84e7d749d0258eeb7003.zip |
Bug 493242: UTF-8 characters in custom field names are mangled in show_activity.cgi - Patch by Vitaly Fedrushkov <vitaly.fedrushkov@gmail.com> r/a=LpSolit
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/bug/activity/table.html.tmpl | 3 | ||||
-rw-r--r-- | template/en/default/filterexceptions.pl | 1 |
2 files changed, 1 insertions, 3 deletions
diff --git a/template/en/default/bug/activity/table.html.tmpl b/template/en/default/bug/activity/table.html.tmpl index 8e44230ae..156837904 100644 --- a/template/en/default/bug/activity/table.html.tmpl +++ b/template/en/default/bug/activity/table.html.tmpl @@ -33,7 +33,6 @@ # it was affected by an old Bugzilla bug.) #%] -[% PROCESS global/variables.none.tmpl %] [% PROCESS "global/field-descs.none.tmpl" %] [% PROCESS bug/time.html.tmpl %] @@ -73,7 +72,7 @@ <a href="attachment.cgi?id=[% change.attachid %]"> Attachment #[% change.attachid %]</a> [% END %] - [%+ change.field %] + [%+ field_descs.${change.fieldname} FILTER html %] </td> <td> [% IF change.removed.defined %] diff --git a/template/en/default/filterexceptions.pl b/template/en/default/filterexceptions.pl index 291122a17..809ca7772 100644 --- a/template/en/default/filterexceptions.pl +++ b/template/en/default/filterexceptions.pl @@ -375,7 +375,6 @@ 'bug/activity/table.html.tmpl' => [ 'change.attachid', - 'change.field', ], 'attachment/create.html.tmpl' => [ |