From 25894b9aa6dc2b0cf66574912ae346c8da8666b4 Mon Sep 17 00:00:00 2001 From: Daniel Gruno Date: Wed, 20 Jun 2012 11:24:28 +0000 Subject: [PATCH] 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 --- docs/manual/mod/mod_lua.xml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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 -- 2.47.3