From 6c5aa6b054f827c444b21c400424396e7d082888 Mon Sep 17 00:00:00 2001 From: alecpl <alec@alec.pl> Date: Tue, 10 Nov 2009 06:04:10 -0500 Subject: [PATCH] - reverted unintentional change --- program/include/main.inc | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/program/include/main.inc b/program/include/main.inc index 7466be7..bf6fd7b 100644 --- a/program/include/main.inc +++ b/program/include/main.inc @@ -1413,7 +1413,7 @@ { global $RCMAIL; - if (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] != 'off') + if (!empty($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) != 'off') return true; if ($port && $_SERVER['SERVER_PORT'] == $port) return true; -- Gitblit v1.9.1