diff options
author | Dylan William Hardison <dylan@hardison.net> | 2018-07-19 18:18:47 +0200 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2018-08-04 18:25:17 +0200 |
commit | 076e01eb0f0f00b5730e487176bddca64a97f4eb (patch) | |
tree | 5937361c7f43081f3112fd7487552be1cb5a5488 /Bugzilla/Quantum.pm | |
parent | 2a030f24117ae9a1ad9559b7b47767c5b6559652 (diff) | |
download | bugzilla-076e01eb0f0f00b5730e487176bddca64a97f4eb.tar.gz bugzilla-076e01eb0f0f00b5730e487176bddca64a97f4eb.tar.xz |
fix errors from group review
Diffstat (limited to 'Bugzilla/Quantum.pm')
-rw-r--r-- | Bugzilla/Quantum.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Quantum.pm b/Bugzilla/Quantum.pm index e4c75726c..b5ee83d8e 100644 --- a/Bugzilla/Quantum.pm +++ b/Bugzilla/Quantum.pm @@ -52,7 +52,7 @@ sub startup { $r->any('/')->to('CGI#index_cgi'); $r->any('/rest')->to('CGI#rest_cgi'); - $r->any('/rest.cgi/*PATH_INFP')->to('CGI#rest_cgi' => { PATH_INFO => '' }); + $r->any('/rest.cgi/*PATH_INFO')->to('CGI#rest_cgi' => { PATH_INFO => '' }); $r->any('/rest/*PATH_INFO')->to( 'CGI#rest_cgi' => { PATH_INFO => '' }); $r->any('/bug/:id')->to('CGI#show_bug_cgi'); $r->any('/extensions/BzAPI/bin/rest.cgi/*PATH_INFO')->to('CGI#bzapi_cgi'); |