Browse Source

Documentation error fixed. Applying patch on behalf of Christopher Thomas (cwt137). Fixes ZF-9894

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@22466 44c647ce-9c0f-0410-b52a-842ac1e357ba
padraic 15 years ago
parent
commit
c93a4dbe64

+ 1 - 1
documentation/manual/en/module_specs/Zend_Http_Client-Advanced.xml

@@ -363,7 +363,7 @@ $client = new Zend_Http_Client('http://www.example.com/fetchdata.php', array(
 
 
 // Do we have the cookies stored in our session?
 // Do we have the cookies stored in our session?
 if (isset($_SESSION['cookiejar']) &&
 if (isset($_SESSION['cookiejar']) &&
-    $_SESSION['cookiejar'] instanceof Zend_Http_CookieJar)) {
+    $_SESSION['cookiejar'] instanceof Zend_Http_CookieJar) {
 
 
     $client->setCookieJar($_SESSION['cookiejar']);
     $client->setCookieJar($_SESSION['cookiejar']);
 } else {
 } else {