summaryrefslogtreecommitdiffstats
path: root/application/modules/ipxe/controllers/AuthController.php
diff options
context:
space:
mode:
Diffstat (limited to 'application/modules/ipxe/controllers/AuthController.php')
-rw-r--r--application/modules/ipxe/controllers/AuthController.php11
1 files changed, 5 insertions, 6 deletions
diff --git a/application/modules/ipxe/controllers/AuthController.php b/application/modules/ipxe/controllers/AuthController.php
index ba10e5c..5b2de3a 100644
--- a/application/modules/ipxe/controllers/AuthController.php
+++ b/application/modules/ipxe/controllers/AuthController.php
@@ -37,13 +37,12 @@ class Ipxe_AuthController extends Zend_Controller_Action {
}
}
- if(isset($_SERVER['HTTPS']))
+ if(isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on')
{
- if ($_SERVER['HTTPS'] == 'on')
- $this->httpmode = 'https';
- else
- $this->httpmode = 'http';
- }
+ $this->httpmode = 'https';
+ }else{
+ $this->httpmode = 'http';
+ }
}
public function serialAction() {