aboutsummaryrefslogtreecommitdiff
path: root/config.php
diff options
context:
space:
mode:
authorMaZderMind2015-12-23 13:21:57 +0100
committerMaZderMind2015-12-23 13:21:57 +0100
commit7177a3fa0e7eba18289e8b038343f1641a873d5d (patch)
tree610e29b946fd83cbb7c1a807ec60336a45d53433 /config.php
parent33edb587f62d800213204d327039e6d215113be8 (diff)
fix comparisons
Diffstat (limited to 'config.php')
-rw-r--r--config.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/config.php b/config.php
index b4595d3..c44c040 100644
--- a/config.php
+++ b/config.php
@@ -23,11 +23,11 @@ $GLOBALS['CONFIG']['PREVIEW_DOMAIN'] = 'pre.stream.c3voc.de';
* Protokollfreie URLs (welche, die mit // beginnen), werden automatisch mit dem korrekten Protokoll ergänzt.
* In diesem Fall wird auch ein SSL-Umschalt-Button im Header angezeigt
*/
-if($_SERVER['HTTP_HOST'] = 'localhost')
+if($_SERVER['HTTP_HOST'] == 'localhost')
{
// keine Konfiguration -> BASEURL wird automatisch erraten
}
-// if($_SERVER['HTTP_HOST'] = 'pre.stream.c3voc.de')
+// if($_SERVER['HTTP_HOST'] == 'pre.stream.c3voc.de')
// {
// // Preview-Domain
// $GLOBALS['CONFIG']['BASEURL'] = '//pre.stream.c3voc.de/';