From: Michael M Slusarz Date: Fri, 13 Nov 2009 18:01:31 +0000 (-0700) Subject: Fix variable name X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=918949364536dc0e09b15858ab9de69108b15b2b;p=horde.git Fix variable name --- diff --git a/framework/Http/lib/Horde/Http/Response/Peclhttp.php b/framework/Http/lib/Horde/Http/Response/Peclhttp.php index 6a0802449..27063ba62 100644 --- a/framework/Http/lib/Horde/Http/Response/Peclhttp.php +++ b/framework/Http/lib/Horde/Http/Response/Peclhttp.php @@ -37,7 +37,7 @@ class Horde_Http_Response_Peclhttp extends Horde_Http_Response_Base $this->_message = $message; foreach ($message->getHeaders() as $k => $v) { - $this->_headers[strtolower($k)] = $v; + $this->headers[strtolower($k)] = $v; } }