From: Chuck Hagenbuch Date: Tue, 15 Sep 2009 02:47:18 +0000 (-0400) Subject: new usage pattern for requests X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=88f5fd6f9d9ef0bda74e263e1dbd1412d511cac0;p=horde.git new usage pattern for requests --- diff --git a/framework/Http/lib/Horde/Http/Client.php b/framework/Http/lib/Horde/Http/Client.php index dea2a2f09..097170b72 100644 --- a/framework/Http/lib/Horde/Http/Client.php +++ b/framework/Http/lib/Horde/Http/Client.php @@ -147,7 +147,7 @@ class Horde_Http_Client } $this->_lastRequest = $this->_request; - $this->_lastResponse = $this->_adapter->send($this->_lastRequest); + $this->_lastResponse = $this->_request->send(); return $this->_lastResponse; }