diff options
author | Joey Hess <joey@kitenet.net> | 2011-06-03 14:36:31 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-06-03 14:36:31 -0400 |
commit | 254080bc85a8f44d209158cc25af2f1f485c53cb (patch) | |
tree | 98ee00f1ed423ef8202c716c2a9b3ff4dbdcc8fb /IkiWiki | |
parent | 138e12846e1f1b6992074095d3e3daefda465d2b (diff) | |
download | ikiwiki-254080bc85a8f44d209158cc25af2f1f485c53cb.tar ikiwiki-254080bc85a8f44d209158cc25af2f1f485c53cb.tar.gz |
Support the Hiawatha web server which sets HTTPS=off rather than not setting it. (There does not seem to be a standard here.)
Diffstat (limited to 'IkiWiki')
-rw-r--r-- | IkiWiki/CGI.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/CGI.pm b/IkiWiki/CGI.pm index cb4f395a0..a372f7351 100644 --- a/IkiWiki/CGI.pm +++ b/IkiWiki/CGI.pm @@ -12,7 +12,7 @@ use Encode; sub printheader ($) { my $session=shift; - if ($ENV{HTTPS} || $config{sslcookie}) { + if (($ENV{HTTPS} && $ENV{HTTPS} ne "off") || $config{sslcookie}) { print $session->header(-charset => 'utf-8', -cookie => $session->cookie(-httponly => 1, -secure => 1)); } |