summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Borg <wolff_borg@users.sourceforge.net>2008-07-22 11:00:34 +0000
committerStephan Borg <wolff_borg@users.sourceforge.net>2008-07-22 11:00:34 +0000
commitd7eb639f3c4c510d1318203b9515b09b008e3999 (patch)
treeb04f65d6b7ffcad3eef4c82cbfa29eabc6d0aa84
parentbce0d5d3a583869a9080da20abcc8792114b1618 (diff)
downloadusers-d7eb639f3c4c510d1318203b9515b09b008e3999.tar.gz
users-d7eb639f3c4c510d1318203b9515b09b008e3999.tar.bz2
users-d7eb639f3c4c510d1318203b9515b09b008e3999.zip
Fixed typo
-rw-r--r--validate.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/validate.php b/validate.php
index de3854b..5d57946 100644
--- a/validate.php
+++ b/validate.php
@@ -1,6 +1,6 @@
<?php
/**
- * $Header: /cvsroot/bitweaver/_bit_users/validate.php,v 1.17 2008/07/22 10:50:37 wolff_borg Exp $
+ * $Header: /cvsroot/bitweaver/_bit_users/validate.php,v 1.18 2008/07/22 11:00:34 wolff_borg Exp $
*
* Copyright (c) 2004 bitweaver.org
* Copyright (c) 2003 tikwiki.org
@@ -8,7 +8,7 @@
* All Rights Reserved. See copyright.txt for details and a complete list of authors.
* Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details
*
- * $Id: validate.php,v 1.17 2008/07/22 10:50:37 wolff_borg Exp $
+ * $Id: validate.php,v 1.18 2008/07/22 11:00:34 wolff_borg Exp $
* @package users
* @subpackage functions
*/
@@ -30,7 +30,7 @@ if( isset( $_SERVER['HTTP_REFERER'] ) && strpos( $_SERVER['HTTP_REFERER'], 'logi
}
// Added check for IIS $_SERVER['HTTPS'] uses 'off' value - wolff_borg
-$https_mode = !empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] != 'off');
+$https_mode = !empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] != 'off';
if ($gBitSystem->isFeatureActive( 'site_https_login_required' ) && !$https_mode) {
$url = $gBitSystem->getConfig( 'site_https_domain' );
$site_https_port = $gBitSystem->getConfig('site_https_port', $site_https_port);