]> granicus.if.org Git - apache/commitdiff
LuaAuthzProvider also gets passed the args from the Require directive.
authorDaniel Gruno <humbedooh@apache.org>
Mon, 6 Aug 2012 10:14:38 +0000 (10:14 +0000)
committerDaniel Gruno <humbedooh@apache.org>
Mon, 6 Aug 2012 10:14:38 +0000 (10:14 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1369769 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/mod_lua.xml

index 03afd9f01e4771b163bdbba35e10e20c7b4b3279..50769d5f56796b8fff4695a1d151e5bf2b663e5a 100644 (file)
@@ -268,7 +268,9 @@ performing access control, or setting mimetypes:</p>
 
 </table>
 
-<p>Hook functions are passed the request object as their only argument.
+<p>Hook functions are passed the request object as their only argument 
+(except for LuaAuthzProvider, which also gets passed the arguments from 
+the Require directive).
 They can return any value, depending on the hook, but most commonly
 they'll return OK, DONE, or DECLINED, which you can write in lua as
 <code>apache2.OK</code>, <code>apache2.DONE</code>, or