From 874a1172a1b118d9a8d89569d7e6f9b2c1868698 Mon Sep 17 00:00:00 2001 From: Juan Basso Date: Fri, 3 Dec 2010 23:13:49 -0200 Subject: [PATCH] Cleaning auth and proxy configuration in full reset. --- cake/libs/http_socket.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cake/libs/http_socket.php b/cake/libs/http_socket.php index 06df4ad1f61..22fdf45d4f2 100644 --- a/cake/libs/http_socket.php +++ b/cake/libs/http_socket.php @@ -1132,6 +1132,8 @@ public function reset($full = true) { $this->response = $initalState['response']; return true; } + $this->_auth = array(); + $this->_proxy = array(); parent::reset($initalState); return true; }