summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Quantum
diff options
context:
space:
mode:
authorDylan William Hardison <dylan@hardison.net>2018-07-19 18:18:47 +0200
committerDylan William Hardison <dylan@hardison.net>2018-08-04 18:25:17 +0200
commit076e01eb0f0f00b5730e487176bddca64a97f4eb (patch)
tree5937361c7f43081f3112fd7487552be1cb5a5488 /Bugzilla/Quantum
parent2a030f24117ae9a1ad9559b7b47767c5b6559652 (diff)
downloadbugzilla-076e01eb0f0f00b5730e487176bddca64a97f4eb.tar.gz
bugzilla-076e01eb0f0f00b5730e487176bddca64a97f4eb.tar.xz
fix errors from group review
Diffstat (limited to 'Bugzilla/Quantum')
-rw-r--r--Bugzilla/Quantum/CGI.pm3
1 files changed, 1 insertions, 2 deletions
diff --git a/Bugzilla/Quantum/CGI.pm b/Bugzilla/Quantum/CGI.pm
index 0e09d795e..ba09dded6 100644
--- a/Bugzilla/Quantum/CGI.pm
+++ b/Bugzilla/Quantum/CGI.pm
@@ -52,7 +52,6 @@ sub load_one {
my $wrapper = sub {
my ($c) = @_;
my $stdin = $c->_STDIN;
- my $stdout = '';
local $C = $c;
local %ENV = $c->_ENV($file);
local *STDIN; ## no critic (local)
@@ -102,7 +101,7 @@ sub _ENV {
$remote_user = $authenticate =~ /Basic\s+(.*)/ ? b64_decode $1 : '';
$remote_user = $remote_user =~ /([^:]+)/ ? $1 : '';
}
- my $path_info = $c->param('PATH_INFO');
+ my $path_info = $c->stash->{'mojo.captures'}{'PATH_INFO'};
my %captures = %{ $c->stash->{'mojo.captures'} // {} };
foreach my $key (keys %captures) {
if ($key eq 'controller' || $key eq 'action' || $key eq 'PATH_INFO' || $key =~ /^REWRITE_/) {