summaryrefslogtreecommitdiffstats
path: root/extensions/BzAPI/bin/rest.cgi
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/BzAPI/bin/rest.cgi')
-rwxr-xr-xextensions/BzAPI/bin/rest.cgi16
1 files changed, 8 insertions, 8 deletions
diff --git a/extensions/BzAPI/bin/rest.cgi b/extensions/BzAPI/bin/rest.cgi
index 5642ad550..5a895bc1d 100755
--- a/extensions/BzAPI/bin/rest.cgi
+++ b/extensions/BzAPI/bin/rest.cgi
@@ -14,12 +14,11 @@ use Bugzilla;
use Bugzilla::Constants;
use Bugzilla::Error;
use Bugzilla::WebService::Constants;
+
BEGIN {
- if (!Bugzilla->feature('rest')
- || !Bugzilla->feature('jsonrpc'))
- {
- ThrowUserError('feature_disabled', { feature => 'rest' });
- }
+ if (!Bugzilla->feature('rest') || !Bugzilla->feature('jsonrpc')) {
+ ThrowUserError('feature_disabled', {feature => 'rest'});
+ }
}
# Set request_cache bzapi value to true in order to enable the
@@ -30,9 +29,10 @@ Bugzilla->request_cache->{bzapi} = 1;
# otherwise native REST will complain
my $path_info = Bugzilla->cgi->path_info;
if ($path_info =~ s'/$'') {
- # Remove first slash as cgi->path_info expects it to
- # not be there when setting a new path.
- Bugzilla->cgi->path_info(substr($path_info, 1));
+
+ # Remove first slash as cgi->path_info expects it to
+ # not be there when setting a new path.
+ Bugzilla->cgi->path_info(substr($path_info, 1));
}
use Bugzilla::WebService::Server::REST;