From ae854afcba9627292413436669a612d7f2f2a98b Mon Sep 17 00:00:00 2001
From: Daniel Gruno
Date: Tue, 15 May 2012 06:24:56 +0000
Subject: [PATCH] Small inconsistency fix
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1338551 13f79535-47bb-0310-9956-ffa450edef68
---
docs/manual/howto/access.xml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/manual/howto/access.xml b/docs/manual/howto/access.xml
index 3920db755d..d78e93bb26 100644
--- a/docs/manual/howto/access.xml
+++ b/docs/manual/howto/access.xml
@@ -133,7 +133,7 @@ Require not gov
following:
-<If "%{HTTP_USER_AGENT} = 'BadBot'">
+<If "%{HTTP_USER_AGENT} == 'BadBot'">
Require All Denied
</If>
@@ -162,7 +162,7 @@ Require not gov
RewriteEngine On
-RewriteCond %{TIME_HOUR} >20 [OR]
+RewriteCond %{TIME_HOUR} >=20 [OR]
RewriteCond %{TIME_HOUR} <07
RewriteRule ^/fridge - [F]
--
2.40.0