mirror of
https://github.com/Rouji/single_php_filehost.git
synced 2025-04-04 16:39:34 +00:00
unfuck code golf
This commit is contained in:
parent
3aeafc78c2
commit
5747e1dbd7
@ -19,7 +19,7 @@ class CONFIG
|
|||||||
|
|
||||||
public static function SITE_URL() : string
|
public static function SITE_URL() : string
|
||||||
{
|
{
|
||||||
$proto = $_SERVER['HTTPS'] ?? true ? 'http' : 'https';
|
$proto = ($_SERVER['HTTPS'] ?? 'off') == 'on' ? 'https' : 'http';
|
||||||
return "$proto://{$_SERVER['HTTP_HOST']}/";
|
return "$proto://{$_SERVER['HTTP_HOST']}/";
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user