You are viewing a plain text version of this content. The canonical link for it is here.
Posted to apreq-cvs@httpd.apache.org by is...@apache.org on 2011/02/04 12:40:05 UTC

svn commit: r1067157 - /httpd/apreq/trunk/glue/perl/lib/Apache2/Cookie.pm

Author: issac
Date: Fri Feb  4 11:40:05 2011
New Revision: 1067157

URL: http://svn.apache.org/viewvc?rev=1067157&view=rev
Log:
CPAN RT #18371: Apache2::Cookie docs synopsis should say "...->bake($r);", not just "...->bake;" (https://rt.cpan.org/Ticket/Display.html?id=18371)

Modified:
    httpd/apreq/trunk/glue/perl/lib/Apache2/Cookie.pm

Modified: httpd/apreq/trunk/glue/perl/lib/Apache2/Cookie.pm
URL: http://svn.apache.org/viewvc/httpd/apreq/trunk/glue/perl/lib/Apache2/Cookie.pm?rev=1067157&r1=1067156&r2=1067157&view=diff
==============================================================================
--- httpd/apreq/trunk/glue/perl/lib/Apache2/Cookie.pm (original)
+++ httpd/apreq/trunk/glue/perl/lib/Apache2/Cookie.pm Fri Feb  4 11:40:05 2011
@@ -145,7 +145,7 @@ Apache2::Cookie, Apache2::Cookie::Jar - 
                                   -value => $c_in->name );
 
     $c_out->path("/bar");               # set path to "/bar"
-    $c_out->bake;                       # send cookie in response headers
+    $c_out->bake($r);                   # send cookie in response headers