From 9459f89d2815aa798d9210c03252694398ea8caa Mon Sep 17 00:00:00 2001 From: David Lawrence Date: Tue, 15 Apr 2014 20:56:48 +0000 Subject: Bug 995238 - Incomplete implementation of bug 540818 causes include_fields=_all to not work as expected r/a=justdave --- Bugzilla/WebService/Server/REST.pm | 9 --------- 1 file changed, 9 deletions(-) (limited to 'Bugzilla/WebService/Server/REST.pm') diff --git a/Bugzilla/WebService/Server/REST.pm b/Bugzilla/WebService/Server/REST.pm index f4bc47c91..7aac95170 100644 --- a/Bugzilla/WebService/Server/REST.pm +++ b/Bugzilla/WebService/Server/REST.pm @@ -312,15 +312,6 @@ sub bz_rest_options { sub rest_include_exclude { my ($params) = @_; - # _all is same as default columns - if ($params->{'include_fields'} - && ($params->{'include_fields'} eq '_all' - || $params->{'include_fields'} eq '_default')) - { - delete $params->{'include_fields'}; - delete $params->{'exclude_fields'} if $params->{'exclude_fields'}; - } - if ($params->{'include_fields'} && !ref $params->{'include_fields'}) { $params->{'include_fields'} = [ split(/[\s+,]/, $params->{'include_fields'}) ]; } -- cgit v1.2.3-24-g4f1b