summaryrefslogtreecommitdiffstats
path: root/Bugzilla
diff options
context:
space:
mode:
authorDylan William Hardison <dylan@hardison.net>2018-09-20 15:54:28 +0200
committerGitHub <noreply@github.com>2018-09-20 15:54:28 +0200
commit7bf615124cd3380a6f7ea0fc553ba598a3ef05a5 (patch)
treec14d447490784caaa5ef1a936c509888ea7e1754 /Bugzilla
parent144234c61f9d0ea53069c9182f95a0fed7526206 (diff)
downloadbugzilla-7bf615124cd3380a6f7ea0fc553ba598a3ef05a5.tar.gz
bugzilla-7bf615124cd3380a6f7ea0fc553ba598a3ef05a5.tar.xz
Bug 1492850 - Remove places where headers are printed
There's one place where some (unused?) debug code prints out headers without using Bugzilla->cgi, and testagent.cgi which does the same. The first thing is removed and testagent.cgi is also removed, with its route handled by a simple route.
Diffstat (limited to 'Bugzilla')
-rw-r--r--Bugzilla/Quantum.pm4
1 files changed, 4 insertions, 0 deletions
diff --git a/Bugzilla/Quantum.pm b/Bugzilla/Quantum.pm
index d2352f6d8..8af06c477 100644
--- a/Bugzilla/Quantum.pm
+++ b/Bugzilla/Quantum.pm
@@ -63,6 +63,10 @@ sub startup {
$r->any('/')->to('CGI#index_cgi');
$r->any('/bug/<id:num>')->to('CGI#show_bug_cgi');
$r->any('/<id:num>')->to('CGI#show_bug_cgi');
+ $r->get('/testagent.cgi' => sub {
+ my $c = shift;
+ $c->render(text => "OK Mojolicious");
+ });
$r->any('/rest')->to('CGI#rest_cgi');
$r->any('/rest.cgi/*PATH_INFO')->to( 'CGI#rest_cgi' => { PATH_INFO => '' } );