diff --git a/webfiori/http/HttpHeader.php b/webfiori/http/HttpHeader.php index cd992ef..d890483 100644 --- a/webfiori/http/HttpHeader.php +++ b/webfiori/http/HttpHeader.php @@ -32,7 +32,7 @@ public function __construct(string $name = '', string $value = '') { * by a colon (":") and the header value. */ public function __toString() { - return $this->getName().' :'.$this->getValue(); + return $this->getName().': '.$this->getValue(); } /** * Returns a string that represents the name of the header.