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 jo...@apache.org on 2005/05/29 16:44:53 UTC

svn commit: r178956 - /httpd/apreq/trunk/glue/perl/lib/Apache2/Request.pm

Author: joes
Date: Sun May 29 07:44:52 2005
New Revision: 178956

URL: http://svn.apache.org/viewcvs?rev=178956&view=rev
Log:
*status methods are read-only.

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

Modified: httpd/apreq/trunk/glue/perl/lib/Apache2/Request.pm
URL: http://svn.apache.org/viewcvs/httpd/apreq/trunk/glue/perl/lib/Apache2/Request.pm?rev=178956&r1=178955&r2=178956&view=diff
==============================================================================
--- httpd/apreq/trunk/glue/perl/lib/Apache2/Request.pm (original)
+++ httpd/apreq/trunk/glue/perl/lib/Apache2/Request.pm Sun May 29 07:44:52 2005
@@ -380,9 +380,8 @@
 =head2 args_status
 
     $req->args_status()
-    $req->args_status($set)
 
-Get/set the I<APR> status code of the query-string parser.
+Get the I<APR> status code of the query-string parser.
 APR_SUCCESS on success, error otherwise.
 
 =for testing
@@ -394,9 +393,8 @@
 =head2 body_status
 
     $req->body_status()
-    $req->body_status($set)
 
-Get/set the current I<APR> status code of the parsed POST data.
+Get the current I<APR> status code of the parsed POST data.
 APR_SUCCESS when parser has completed, APR_INCOMPLETE if parser
 has more data to parse, APR_EINIT if no post data has been parsed,
 error otherwise.