From f237f60599ce67f6e2066529c887699b22a44fef Mon Sep 17 00:00:00 2001 From: Daniel Gruno Date: Tue, 17 Jul 2012 14:52:54 +0000 Subject: [PATCH] Use integer operators when comparing to TIME_HOUR Reported by Florian in comment #124 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1362526 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/expr.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/manual/expr.xml b/docs/manual/expr.xml index d2de79cecb..10f0d749e8 100644 --- a/docs/manual/expr.xml +++ b/docs/manual/expr.xml @@ -489,7 +489,7 @@ listfunction ::= listfuncname "(" word ")" # Only allow access to this content during business hours <Directory "/foo/bar/business"> - Require expr %{TIME_HOUR} >= 9 && %{TIME_HOUR} <= 17 + Require expr %{TIME_HOUR} -gt 9 && %{TIME_HOUR} -lt 17 </Directory> -- 2.50.0