summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormkanat%bugzilla.org <>2009-07-08 00:39:31 +0200
committermkanat%bugzilla.org <>2009-07-08 00:39:31 +0200
commit3fd0bd215ef651409f12322994f07b2fbd3e3f11 (patch)
tree8075f5a8482880eff3be7878f21cc198077eb79d
parent89b15c8ff86238276de3428c379e46f7c04b6516 (diff)
downloadbugzilla-3fd0bd215ef651409f12322994f07b2fbd3e3f11.tar.gz
bugzilla-3fd0bd215ef651409f12322994f07b2fbd3e3f11.tar.xz
Bug 502698: jsonrpc.cgi was missing "use Bugzilla::Error"
Patch by Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=Lpsolit
-rw-r--r--jsonrpc.cgi1
1 files changed, 1 insertions, 0 deletions
diff --git a/jsonrpc.cgi b/jsonrpc.cgi
index c04f20f6a..cd41663fa 100644
--- a/jsonrpc.cgi
+++ b/jsonrpc.cgi
@@ -25,6 +25,7 @@ use lib qw(. lib);
use Bugzilla;
use Bugzilla::Constants;
+use Bugzilla::Error;
use Bugzilla::WebService::Constants;
# This eval allows runtests to pass even if JSON::RPC isn't
# installed.