From: Daniel Gruno Date: Fri, 19 Apr 2013 14:31:51 +0000 (+0000) Subject: s/r:/r./ X-Git-Tag: 2.5.0-alpha~5567 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4f2c8eaeac4892712a82f7d98545325208bdbcad;p=apache s/r:/r./ git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1469852 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_lua.xml b/docs/manual/mod/mod_lua.xml index 7765931aa4..1eeaac7a4a 100644 --- a/docs/manual/mod/mod_lua.xml +++ b/docs/manual/mod/mod_lua.xml @@ -843,9 +843,9 @@ r:custom_response(404, "Baleted!") -r:exists_config_define(string) -- Checks whether a configuration definition exists or not: +r.exists_config_define(string) -- Checks whether a configuration definition exists or not: -if r:exists_config_define("FOO") then +if r.exists_config_define("FOO") then r:puts("httpd was probably run with -DFOO, or it was defined in the configuration") end