From: Rich Bowen Date: Fri, 7 Mar 2014 21:07:22 +0000 (+0000) Subject: As per comment, removing quotes makes the example work X-Git-Tag: 2.4.8~22 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a957eaa35596d6ae06a3b76f1ff808c703033b44;p=apache As per comment, removing quotes makes the example work git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1575408 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/expr.xml b/docs/manual/expr.xml index 0d5a29cb00..92495715cb 100644 --- a/docs/manual/expr.xml +++ b/docs/manual/expr.xml @@ -542,7 +542,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>