diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2012-11-12 18:48:15 +0100 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2012-11-12 18:48:15 +0100 |
commit | 72755c5193d778152fda455454a87174ef0e42f6 (patch) | |
tree | 3046e29342935df95b4e634cdf17b6138492dfc6 /jsonrpc.cgi | |
parent | Bug 808300: Requesting data for your own account using User.get should also r... (diff) | |
download | bugzilla-72755c5193d778152fda455454a87174ef0e42f6.tar.gz bugzilla-72755c5193d778152fda455454a87174ef0e42f6.tar.bz2 bugzilla-72755c5193d778152fda455454a87174ef0e42f6.zip |
Bug 676844: Replace ThrowCodeError() by ThrowUserError() when the error is not triggered by the code itself
r=glob a=LpSolit
Diffstat (limited to 'jsonrpc.cgi')
-rwxr-xr-x | jsonrpc.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jsonrpc.cgi b/jsonrpc.cgi index 0d275f83c..acafaa13b 100755 --- a/jsonrpc.cgi +++ b/jsonrpc.cgi @@ -15,7 +15,7 @@ use Bugzilla::Error; use Bugzilla::WebService::Constants; BEGIN { if (!Bugzilla->feature('jsonrpc')) { - ThrowCodeError('feature_disabled', { feature => 'jsonrpc' }); + ThrowUserError('feature_disabled', { feature => 'jsonrpc' }); } } use Bugzilla::WebService::Server::JSONRPC; |