summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Quantum.pm
diff options
context:
space:
mode:
authorDylan William Hardison <dylan@hardison.net>2018-06-14 20:32:43 +0200
committerDylan William Hardison <dylan@hardison.net>2018-06-28 22:41:58 +0200
commitb3a6e0da65144921a99a369398dd390f5c65bef3 (patch)
tree599fe3abc1c6837fbdd55272968bee1a29363020 /Bugzilla/Quantum.pm
parent258d3e1c7d5d99ab202ffe5ce777c435fc34d44a (diff)
downloadbugzilla-b3a6e0da65144921a99a369398dd390f5c65bef3.tar.gz
bugzilla-b3a6e0da65144921a99a369398dd390f5c65bef3.tar.xz
work in progress
Diffstat (limited to 'Bugzilla/Quantum.pm')
-rw-r--r--Bugzilla/Quantum.pm23
1 files changed, 0 insertions, 23 deletions
diff --git a/Bugzilla/Quantum.pm b/Bugzilla/Quantum.pm
index 7d679e3c3..0c1356dd8 100644
--- a/Bugzilla/Quantum.pm
+++ b/Bugzilla/Quantum.pm
@@ -84,29 +84,6 @@ sub startup {
},
);
- my $urlbase = Bugzilla->localconfig->{urlbase};
- $r->get(
- '/quicksearch.html' => sub {
- my $c = shift;
- $c->res->code(301);
- $c->redirect_to( $urlbase . 'page.cgi?id=quicksearch.html' );
- }
- );
- $r->get(
- '/bugwritinghelp.html' => sub {
- my $c = shift;
- $c->res->code(301);
- $c->redirect_to( $urlbase . 'page.cgi?id=bug-writing.html', 301 );
- }
- );
- $r->get(
- '/<bug_id:num>' => sub {
- my $c = shift;
- $c->res->code(301);
- my $bug_id = $c->param('bug_id');
- $c - redirect_to( $urlbase . "show_bug.cgi?id=$bug_id" );
- }
- );
}
1;