From 8f41764d0202b746bf978b0fd9aef21fca105a66 Mon Sep 17 00:00:00 2001 From: Michael Dowling Date: Tue, 29 Mar 2011 13:31:38 -0500 Subject: [PATCH] [Http] Removing reference to clas property that does not exist --- library/Guzzle/Http/Message/Request.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/library/Guzzle/Http/Message/Request.php b/library/Guzzle/Http/Message/Request.php index 76957095..d9b8a13f 100644 --- a/library/Guzzle/Http/Message/Request.php +++ b/library/Guzzle/Http/Message/Request.php @@ -172,7 +172,7 @@ class Request extends AbstractMessage implements RequestInterface $this->url = clone $this->url; $this->curlHandle = $this->response = $this->responseBody = null; $this->params->set('queued_response', false); - $this->processedResponse = $this->preparedRequest = false; + $this->processedResponse = false; $this->setState(RequestInterface::STATE_NEW); } @@ -601,7 +601,6 @@ class Request extends AbstractMessage implements RequestInterface $this->response = null; $this->responseBody = null; $this->processedResponse = false; - $this->preparedRequest = false; $this->getParams()->remove('queued_response'); $this->curlOptions->clear(); $this->releaseCurlHandle();