Max F 4 роки тому
батько
коміт
1d2c21a0af
1 змінених файлів з 1 додано та 1 видалено
  1. 1 1
      src/Http/Request.php

+ 1 - 1
src/Http/Request.php

@@ -116,7 +116,7 @@ class Request
 
 	public function getFullUrl()
 	{
-		$scheme = $this->isSecure() ? 'https://' : 'http:';
+		$scheme = $this->isSecure() ? 'https://' : 'http://';
 		return $scheme . $this->SERVER['SERVER_NAME'] . $this->url;
 	}