diff options
author | MaZderMind | 2015-12-23 13:21:57 +0100 |
---|---|---|
committer | MaZderMind | 2015-12-23 13:21:57 +0100 |
commit | 7177a3fa0e7eba18289e8b038343f1641a873d5d (patch) | |
tree | 610e29b946fd83cbb7c1a807ec60336a45d53433 /config.php | |
parent | 33edb587f62d800213204d327039e6d215113be8 (diff) |
fix comparisons
Diffstat (limited to 'config.php')
-rw-r--r-- | config.php | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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/'; |