Fix bug where the colon between host and port would appear, even when port was an empty string.
This commit is contained in:
		| @@ -288,9 +288,11 @@ public function getNormalizedHttpUrl() | ||||
|         // $host = (isset($parts['host'])) ? explode(':', $parts['host'])[0] : ''; | ||||
|         $path = (isset($parts['path'])) ? $parts['path'] : ''; | ||||
|  | ||||
|         if (($scheme == 'https' && $port != '443') | ||||
|             || ($scheme == 'http' && $port != '80')) { | ||||
|             $host = "$host:$port"; | ||||
|         if ($port) { | ||||
|             if (('https' == $scheme && $port != '443') | ||||
|                 || ('http' == $scheme && $port != '80')) { | ||||
|                 $host = "$host:$port"; | ||||
|             } | ||||
|         } | ||||
|         return "$scheme://$host$path"; | ||||
|     } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 GaryJones
					GaryJones