diff options
author | mkanat%bugzilla.org <> | 2009-07-08 00:39:31 +0200 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2009-07-08 00:39:31 +0200 |
commit | 3fd0bd215ef651409f12322994f07b2fbd3e3f11 (patch) | |
tree | 8075f5a8482880eff3be7878f21cc198077eb79d /jsonrpc.cgi | |
parent | 89b15c8ff86238276de3428c379e46f7c04b6516 (diff) | |
download | bugzilla-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
Diffstat (limited to 'jsonrpc.cgi')
-rw-r--r-- | jsonrpc.cgi | 1 |
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. |