Code

Added fix for empty ssl strings
authorcajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Thu, 7 Jul 2005 04:48:24 +0000 (04:48 +0000)
committercajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Thu, 7 Jul 2005 04:48:24 +0000 (04:48 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@925 594d385d-05f5-0310-b6e9-bd551577e9d8

html/index.php

index ef3a213d70faa0406190061c2ad65550d549a725..7df5f64f817828dfc4f55749fb25f8c5371ca532 100644 (file)
@@ -120,7 +120,7 @@ if (!isset($HTTP_SERVER_VARS['HTTPS']) ||
 }
 
 /* If SSL is forced, just forward to the SSL enabled site */
-if ($config->data['MAIN']['FORCESSL'] == 'true'){
+if ($config->data['MAIN']['FORCESSL'] == 'true' && $ssl != ''){
   header ("Location: $ssl");
   exit;
 }