diff --git a/core/templates.php b/core/templates.php index 158001a..b8bfe4f 100644 --- a/core/templates.php +++ b/core/templates.php @@ -51,7 +51,7 @@ $protocol = $_SERVER['SERVER_PROTOCOL']; $domain = $_SERVER['HTTP_HOST']; $script = $_SERVER['SCRIPT_NAME']; - $parameters = $GET ? $_SERVER['QUERY_STRING'] : "" ; + $parameters = $_GET ? $_SERVER['QUERY_STRING'] : "" ; $protocol=strpos(strtolower($_SERVER['SERVER_PROTOCOL']),'https') === FALSE ? 'http' : 'https'; $currenturl = $protocol . '://' . $domain. $script . '?' . $parameters;