From b8ede59f7a75024d7cf3397083ac7461dd013591 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Fri, 18 Jan 2013 19:20:40 +0000 Subject: [PATCH] redirect to https version only if $encrypted_only --- cgi-auth-flexible.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cgi-auth-flexible.pm b/cgi-auth-flexible.pm index 4ab430d..fbb9ab3 100644 --- a/cgi-auth-flexible.pm +++ b/cgi-auth-flexible.pm @@ -506,7 +506,7 @@ sub _check_divert_core ($) { my $cooks = $r->_ch('get_cookie'); - if (!$r->_ch('check_https')) { + if ($r->{S}{encrypted_only} && !$r->_ch('check_https')) { return ({ Kind => 'REDIRECT-HTTPS', Message => $r->_gt("Redirecting to secure server..."), CookieSecret => undef, -- 2.30.2