From: Christophe Jaillet Date: Sat, 5 Sep 2015 06:39:49 +0000 (+0000) Subject: Fix typo (r1701349 in trunk) X-Git-Tag: 2.4.17~162 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c2c1df491534b1c8e9070a9c1811af6e92e8e083;p=thirdparty%2Fapache%2Fhttpd.git Fix typo (r1701349 in trunk) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1701351 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_lua.xml b/docs/manual/mod/mod_lua.xml index 95f7a1ef240..2dab4b7e303 100644 --- a/docs/manual/mod/mod_lua.xml +++ b/docs/manual/mod/mod_lua.xml @@ -126,7 +126,7 @@ function handle(r) -- use our own Error contents r:puts("Unsupported HTTP method " .. r.method) r.status = 405 - return apache2.ok + return apache2.OK else -- use the ErrorDocument return 501