diff options
author | Rich Bowen <rbowen@apache.org> | 2011-10-06 15:14:25 +0200 |
---|---|---|
committer | Rich Bowen <rbowen@apache.org> | 2011-10-06 15:14:25 +0200 |
commit | 31404895f2361c230823a7f79acbf233a2c82f3c (patch) | |
tree | 6456a0c016944ea7bb6a4596685b4eabb3e44526 /docs/manual | |
parent | Export ap_max_mem_free, needed by r1178079, as pointed out by Gregg L. Smith (diff) | |
download | apache2-31404895f2361c230823a7f79acbf233a2c82f3c.tar.xz apache2-31404895f2361c230823a7f79acbf233a2c82f3c.zip |
Patch from Description Mathijs Schmittmann - Corrected syntax for && (vs &) expression. Refs https://issues.apache.org/bugzilla/show_bug.cgi?id=51976
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1179614 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual')
-rw-r--r-- | docs/manual/mod/mod_authz_core.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/manual/mod/mod_authz_core.xml b/docs/manual/mod/mod_authz_core.xml index 192444f896..d7d434ce30 100644 --- a/docs/manual/mod/mod_authz_core.xml +++ b/docs/manual/mod/mod_authz_core.xml @@ -237,7 +237,7 @@ decisions on arbitrary expressions.</p> <example> - Require expr %{TIME_HOUR} >= 9 & %{TIME_HOUR} <= 17 <br /> + Require expr %{TIME_HOUR} >= 9 && %{TIME_HOUR} <= 17 <br /> </example> <p>The syntax is described in the <a href="../expr.html">ap_expr</a> |