summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Quantum/CGI.pm
diff options
context:
space:
mode:
authorDylan William Hardison <dylan@hardison.net>2018-08-01 05:49:38 +0200
committerDylan William Hardison <dylan@hardison.net>2018-08-01 05:49:38 +0200
commit01309f9f36d1767c8d6984364c47539fed3946e6 (patch)
tree22dcba71661b1382804da55f5e9c6cf4ff56747a /Bugzilla/Quantum/CGI.pm
parentc54dcbbe9b9ec1199e6b7e8903ff65ac7448995d (diff)
downloadbugzilla-01309f9f36d1767c8d6984364c47539fed3946e6.tar.gz
bugzilla-01309f9f36d1767c8d6984364c47539fed3946e6.tar.xz
add more debugging but also probably fix redirect problem
Diffstat (limited to 'Bugzilla/Quantum/CGI.pm')
-rw-r--r--Bugzilla/Quantum/CGI.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Quantum/CGI.pm b/Bugzilla/Quantum/CGI.pm
index 7585d888a..0a74f1ee5 100644
--- a/Bugzilla/Quantum/CGI.pm
+++ b/Bugzilla/Quantum/CGI.pm
@@ -117,7 +117,7 @@ sub _ENV {
CONTENT_LENGTH => $content_length || 0,
CONTENT_TYPE => $headers->content_type || '',
GATEWAY_INTERFACE => 'CGI/1.1',
- HTTPS => $req->is_secure ? 'YES' : 'NO',
+ HTTPS => $req->is_secure ? 'on' : 'off',
%env_headers,
QUERY_STRING => $cgi_query->to_string,
PATH_INFO => $path_info ? "/$path_info" : '',