fix notice on non-https views

This commit is contained in:
Brion Vibber 2010-10-15 15:01:55 -07:00
parent a7d98435f6
commit e0cb6d6f7f
1 changed files with 1 additions and 1 deletions

View File

@ -396,7 +396,7 @@ class StatusNet
static function isHTTPS()
{
// There are some exceptions to this; add them here!
return $_SERVER['HTTPS'];
return !empty($_SERVER['HTTPS']);
}
}