diff options
author | David Lawrence <dkl@redhat.com> | 2014-06-19 20:44:32 +0200 |
---|---|---|
committer | David Lawrence <dkl@redhat.com> | 2014-06-19 20:44:32 +0200 |
commit | 0f3bf0707aeab92635d41f8751397ba53997d7d0 (patch) | |
tree | 38052377992c5371a119749978cde358c19b2d3b /extensions/BzAPI | |
parent | c67298330f4ac2944a835263ff666ba23f1c5633 (diff) | |
download | bugzilla-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.pm | 2 |
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}; |