From: Daniel Gruno Date: Wed, 20 Jun 2012 11:24:28 +0000 (+0000) Subject: Add back the parsebody reference in the handler example. X-Git-Tag: 2.5.0-alpha~6718 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=377ab6e9a4329736ab673dc5cad5a2918b12c936;p=thirdparty%2Fapache%2Fhttpd.git Add back the parsebody reference in the handler example. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1352048 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_lua.xml b/docs/manual/mod/mod_lua.xml index abb531d34f7..5d2f5bafacf 100644 --- a/docs/manual/mod/mod_lua.xml +++ b/docs/manual/mod/mod_lua.xml @@ -105,13 +105,11 @@ function handle(r) if r.method == 'GET' then for k, v in pairs( r:parseargs() ) do r:puts( string.format("%s: %s\n", k, v) ) - end else r:puts("Unsupported HTTP method " .. r.method) end