allow hostname with SSL

This commit is contained in:
Evan Prodromou 2010-01-09 22:49:26 -08:00
parent e8d85a1ef5
commit 3d723ed1ed
1 changed files with 1 additions and 0 deletions

View File

@ -158,6 +158,7 @@ class Status_network extends DB_DataObject
0 != strcasecmp($sn->hostname, $servername)) {
$sn->redirectTo('http://'.$sn->hostname.$_SERVER['REQUEST_URI']);
} else if (!empty($_SERVER['HTTPS']) &&
0 != strcasecmp($sn->hostname, $servername) &&
0 != strcasecmp($sn->nickname.'.'.$wildcard, $servername)) {
$sn->redirectTo('https://'.$sn->nickname.'.'.$wildcard.$_SERVER['REQUEST_URI']);
}