From 3517d8a6687cd37cb8c9009a78f16071d652254a Mon Sep 17 00:00:00 2001 From: Dylan William Hardison Date: Mon, 21 May 2018 11:38:41 -0400 Subject: almost working --- Bugzilla/Quantum/CGI.pm | 2 -- 1 file changed, 2 deletions(-) (limited to 'Bugzilla/Quantum/CGI.pm') diff --git a/Bugzilla/Quantum/CGI.pm b/Bugzilla/Quantum/CGI.pm index 4d43158cc..fab2b145d 100644 --- a/Bugzilla/Quantum/CGI.pm +++ b/Bugzilla/Quantum/CGI.pm @@ -16,7 +16,6 @@ use Sub::Quote 2.005000; use Taint::Util qw(untaint); my %CGIS; -my %SKIP = ( 'xmlrpc.cgi' => 1, 'jsonrpc.cgi' => 1, 'rest.cgi' => 1); _load_all(); @@ -29,7 +28,6 @@ sub expose_routes { sub _load_all { foreach my $script (glob '*.cgi') { - next if $SKIP{$script}; my $name = _load_cgi($script); $CGIS{ $script } = $name; } -- cgit v1.2.3-24-g4f1b