diff options
author | lpsolit%gmail.com <> | 2009-10-26 12:28:48 +0100 |
---|---|---|
committer | lpsolit%gmail.com <> | 2009-10-26 12:28:48 +0100 |
commit | bd06859267aae5ec7bdcd1ae65fe145ef63adc54 (patch) | |
tree | 44778a8de27641d6aa6ffea90dee576b2aba44cc /Bugzilla/WebService | |
parent | 155bc6f800ebb5da30ff892105411da1163ae703 (diff) | |
download | bugzilla-bd06859267aae5ec7bdcd1ae65fe145ef63adc54.tar.gz bugzilla-bd06859267aae5ec7bdcd1ae65fe145ef63adc54.tar.xz |
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 'Bugzilla/WebService')
-rw-r--r-- | Bugzilla/WebService/Bug.pm | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Bugzilla/WebService/Bug.pm b/Bugzilla/WebService/Bug.pm index 44382e79f..6a3e93519 100644 --- a/Bugzilla/WebService/Bug.pm +++ b/Bugzilla/WebService/Bug.pm @@ -220,9 +220,6 @@ sub history { $change->{added} = $self->type('string', $change->{added}); $change->{field_name} = $self->type('string', delete $change->{fieldname}); - # This is going to go away in the future from GetBugActivity - # so we shouldn't put it in the API. - delete $change->{field}; push (@{$bug_history{changes}}, $change); } |