From: Richard Bowen Date: Fri, 7 Mar 2014 21:05:11 +0000 (+0000) Subject: As per comment, removing quotes makes the example work X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cc2e4ccc32d446b94d87f82563f0e16441be7f1f;p=thirdparty%2Fapache%2Fhttpd.git As per comment, removing quotes makes the example work git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1575406 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/expr.xml b/docs/manual/expr.xml index 0b43fea2fe8..c8be338d4c7 100644 --- a/docs/manual/expr.xml +++ b/docs/manual/expr.xml @@ -560,7 +560,7 @@ listfunction ::= listfuncname "(" word ")" # Only allow access to this content during business hours <Directory "/foo/bar/business"> - Require expr "%{TIME_HOUR} -gt 9 && %{TIME_HOUR} -lt 17" + Require expr %{TIME_HOUR} -gt 9 && %{TIME_HOUR} -lt 17 </Directory>