summaryrefslogtreecommitdiffstats
path: root/Bugzilla/WebService/Bug.pm
diff options
context:
space:
mode:
authorDavid Lawrence <dkl@mozilla.com>2014-08-06 22:24:22 +0200
committerDavid Lawrence <dkl@mozilla.com>2014-08-06 22:24:22 +0200
commitc57791dc825c0393c27b3ca3656d69f7253b86b7 (patch)
tree39cb8fea106e56c0b8c6778dd9bf0a2162429c3e /Bugzilla/WebService/Bug.pm
parentc0dd51d4d3f83015d77db8a6cc2958aa6fccc09c (diff)
downloadbugzilla-c57791dc825c0393c27b3ca3656d69f7253b86b7.tar.gz
bugzilla-c57791dc825c0393c27b3ca3656d69f7253b86b7.tar.xz
Bug 1049830: Bug.search with count_only = 1 does not work for JSONRPC and REST but does work for XMLRPC
Diffstat (limited to 'Bugzilla/WebService/Bug.pm')
-rw-r--r--Bugzilla/WebService/Bug.pm9
1 files changed, 8 insertions, 1 deletions
diff --git a/Bugzilla/WebService/Bug.pm b/Bugzilla/WebService/Bug.pm
index 5ce098e74..405f04b0f 100644
--- a/Bugzilla/WebService/Bug.pm
+++ b/Bugzilla/WebService/Bug.pm
@@ -596,7 +596,14 @@ sub search {
my ($data) = $search->data;
# BMO if the caller only wants the count, that's all we need to return
- return $data if $params->{count_only};
+ if ($params->{count_only}) {
+ if (Bugzilla->usage_mode == USAGE_MODE_XMLRPC) {
+ return $data;
+ }
+ else {
+ return { bug_count => $data };
+ }
+ }
if (!scalar @$data) {
return { bugs => [] };