summaryrefslogtreecommitdiffstats
path: root/extensions/BzAPI
diff options
context:
space:
mode:
authorDavid Lawrence <dkl@redhat.com>2014-06-19 20:44:32 +0200
committerDavid Lawrence <dkl@redhat.com>2014-06-19 20:44:32 +0200
commit0f3bf0707aeab92635d41f8751397ba53997d7d0 (patch)
tree38052377992c5371a119749978cde358c19b2d3b /extensions/BzAPI
parentc67298330f4ac2944a835263ff666ba23f1c5633 (diff)
downloadbugzilla-0f3bf0707aeab92635d41f8751397ba53997d7d0.tar.gz
bugzilla-0f3bf0707aeab92635d41f8751397ba53997d7d0.tar.xz
Bug 1027037: history.changer is not a full email address
r=glob
Diffstat (limited to 'extensions/BzAPI')
-rw-r--r--extensions/BzAPI/lib/Util.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/BzAPI/lib/Util.pm b/extensions/BzAPI/lib/Util.pm
index 14b083401..4675b3236 100644
--- a/extensions/BzAPI/lib/Util.pm
+++ b/extensions/BzAPI/lib/Util.pm
@@ -287,7 +287,7 @@ sub fix_changeset {
if ($data->{who}) {
$data->{changer} = {
- name => filter_email($data->{who}),
+ name => $rpc->type('string', $data->{who}),
ref => $rpc->type('string', ref_urlbase() . "/user/" . $data->{who})
};
delete $data->{who};