summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Quantum.pm
diff options
context:
space:
mode:
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;