소스 검색

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 년 전
부모
커밋
c93a4dbe64
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      documentation/manual/en/module_specs/Zend_Http_Client-Advanced.xml

+ 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?
 if (isset($_SESSION['cookiejar']) &&
-    $_SESSION['cookiejar'] instanceof Zend_Http_CookieJar)) {
+    $_SESSION['cookiejar'] instanceof Zend_Http_CookieJar) {
 
     $client->setCookieJar($_SESSION['cookiejar']);
 } else {