From: Daniel Gruno Date: Wed, 22 Aug 2012 07:35:30 +0000 (+0000) Subject: elaborate on how r:parsebody() works X-Git-Tag: 2.5.0-alpha~6388 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0a52bedb7bce3c26297339656dcb5afda6a3d81b;p=thirdparty%2Fapache%2Fhttpd.git elaborate on how r:parsebody() works git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1375910 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_lua.xml b/docs/manual/mod/mod_lua.xml index 6eafc2ce3d1..96bec9fae67 100644 --- a/docs/manual/mod/mod_lua.xml +++ b/docs/manual/mod/mod_lua.xml @@ -631,7 +631,9 @@ end - r:parsebody() -- parse any POST data in the request and return it as a Lua table + r:parsebody([sizeLimit]) -- parse the request body as a POST and return a lua table. + -- An optional number may be passed to specify the maximum number + -- of bytes to parse. Default is 8192 bytes.