diff options
| -rwxr-xr-x | h-source/Library/Url.php | 4 | 
1 files changed, 3 insertions, 1 deletions
diff --git a/h-source/Library/Url.php b/h-source/Library/Url.php index 5124047..efb8e6e 100755 --- a/h-source/Library/Url.php +++ b/h-source/Library/Url.php @@ -27,7 +27,9 @@ class Url {  	//get the url starting from the root folder  	public static function getRoot($pathFromRootFolder = null) { -		$url = MOD_REWRITE_MODULE === true ? '/' . $pathFromRootFolder : '/index.php/' . $pathFromRootFolder; +		$protocol = Params::$useHttps ? "https" : "http"; + +		$url = MOD_REWRITE_MODULE === true ? "$protocol://" . DOMAIN_NAME . '/' . $pathFromRootFolder : "$protocol://" . DOMAIN_NAME . '/index.php/' . $pathFromRootFolder;  		return $url;  	}  | 
