1
0
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:
Rouji 2021-08-30 12:21:56 +02:00
parent 3aeafc78c2
commit 5747e1dbd7

View File

@ -19,7 +19,7 @@ class CONFIG
public static function SITE_URL() : string
{
$proto = $_SERVER['HTTPS'] ?? true ? 'http' : 'https';
$proto = ($_SERVER['HTTPS'] ?? 'off') == 'on' ? 'https' : 'http';
return "$proto://{$_SERVER['HTTP_HOST']}/";
}
};