diff options
author | Dylan William Hardison <dylan@hardison.net> | 2018-06-21 23:25:40 +0200 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2018-06-28 22:42:01 +0200 |
commit | 46288f62b71eb569379ccbb7e8ee68bb05220ac2 (patch) | |
tree | 71b595a725436c6445c8bc6a0bde9eeac8abef45 /Bugzilla/Quantum | |
parent | 4a29d896ea90e8174ca10a8fd696e4c0767d3350 (diff) | |
download | bugzilla-46288f62b71eb569379ccbb7e8ee68bb05220ac2.tar.gz bugzilla-46288f62b71eb569379ccbb7e8ee68bb05220ac2.tar.xz |
fix mistake
Diffstat (limited to 'Bugzilla/Quantum')
-rw-r--r-- | Bugzilla/Quantum/Plugin/Glue.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Quantum/Plugin/Glue.pm b/Bugzilla/Quantum/Plugin/Glue.pm index 301003740..54a360003 100644 --- a/Bugzilla/Quantum/Plugin/Glue.pm +++ b/Bugzilla/Quantum/Plugin/Glue.pm @@ -55,8 +55,8 @@ sub register { $app->hook( before_dispatch => sub { + my ($c) = @_; if ($D{HTTPD_IN_SUBDIR}) { - my ($c) = @_; my $path = $c->req->url->path; $path =~ s{^/bmo}{}s; $c->req->url->path($path); |