From: Eric Covener Date: Sun, 16 Oct 2011 18:04:14 +0000 (+0000) Subject: the correct property is r.filename as used elsewhere X-Git-Tag: 2.3.15~118 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5c88cbe564c0a755e8a3b1fa90017efd4ab1d63f;p=thirdparty%2Fapache%2Fhttpd.git the correct property is r.filename as used elsewhere git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1184891 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_lua.xml b/docs/manual/mod/mod_lua.xml index ef02cc20699..10653737174 100644 --- a/docs/manual/mod/mod_lua.xml +++ b/docs/manual/mod/mod_lua.xml @@ -555,7 +555,7 @@ LuaHookTranslateName /scripts/conf/hooks.lua silly_mapper require "apache2" function silly_mapper(r) if r.uri == "/" then - r.file = "/var/www/home.lua" + r.filename = "/var/www/home.lua" return apache2.OK else return apache2.DECLINED