diff options
author | mkanat%bugzilla.org <> | 2008-04-08 06:54:20 +0200 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2008-04-08 06:54:20 +0200 |
commit | d7b151f21a9d8faea0a34b7a8b73115c54475840 (patch) | |
tree | 436b436d3d0f610e9effea69631f33750f3227cb /xmlrpc.cgi | |
parent | a6750cb099ae88ffe3ac7de44ca0e63c87e8542e (diff) | |
download | bugzilla-d7b151f21a9d8faea0a34b7a8b73115c54475840.tar.gz bugzilla-d7b151f21a9d8faea0a34b7a8b73115c54475840.tar.xz |
Bug 415796: All webservice methods were failing if a string had multibyte characters in it, due to bugs in SOAP::Lite.
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=LpSolit
Diffstat (limited to 'xmlrpc.cgi')
-rwxr-xr-x | xmlrpc.cgi | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/xmlrpc.cgi b/xmlrpc.cgi index 2ac34e675..a802ac43f 100755 --- a/xmlrpc.cgi +++ b/xmlrpc.cgi @@ -20,6 +20,7 @@ use lib qw(. lib); use Bugzilla; use Bugzilla::Constants; +use Bugzilla::Error; use Bugzilla::Hook; # Use an eval here so that runtests.pl accepts this script even if SOAP-Lite |