summaryrefslogtreecommitdiff
path: root/docs/manual/mod/mod_authz_dbd.xml
diff options
context:
space:
mode:
authorChris Darroch <chrisd@apache.org>2008-11-02 04:28:02 +0000
committerChris Darroch <chrisd@apache.org>2008-11-02 04:28:02 +0000
commit66b8ffda5e5426b671b838314d20cd93388f0593 (patch)
tree6802fd062bfe5cacca220b7e2ba3929a5d69f357 /docs/manual/mod/mod_authz_dbd.xml
parentcf4e94f55e8a6434fee0fee2a8ee09beaf273591 (diff)
downloadhttpd-66b8ffda5e5426b671b838314d20cd93388f0593.tar.gz
Documentation revisions for r709838 and r709839.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@709841 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/mod/mod_authz_dbd.xml')
-rw-r--r--docs/manual/mod/mod_authz_dbd.xml6
1 files changed, 0 insertions, 6 deletions
diff --git a/docs/manual/mod/mod_authz_dbd.xml b/docs/manual/mod/mod_authz_dbd.xml
index 3cdff7fb4b..3cfdf5b5d4 100644
--- a/docs/manual/mod/mod_authz_dbd.xml
+++ b/docs/manual/mod/mod_authz_dbd.xml
@@ -47,9 +47,6 @@
<seealso><directive module="mod_authz_core">Require</directive></seealso>
<seealso>
- <directive module="mod_authz_core">AuthzMergeRules</directive>
-</seealso>
-<seealso>
<directive module="mod_authn_dbd">AuthDBDUserPWQuery</directive>
</seealso>
<seealso><directive module="mod_dbd">DBDriver</directive></seealso>
@@ -106,7 +103,6 @@ DBDExptime 300
"SELECT password FROM authn WHERE user = %s AND login = 'true'"
# mod_authz_core configuration for mod_authz_dbd
- AuthzMergeRules Off
Require dbd-group team
# mod_authz_dbd configuration
@@ -123,7 +119,6 @@ DBDExptime 300
"SELECT password FROM authn WHERE user = %s"
# dbd-login action executes a statement to log user in
- AuthzMergeRules Off
Require dbd-login
AuthzDBDQuery \
"UPDATE authn SET login = 'true' WHERE user = %s"
@@ -135,7 +130,6 @@ DBDExptime 300
&lt;Files logout.html&gt;
# dbd-logout action executes a statement to log user out
- AuthzMergeRules Off
Require dbd-logout
AuthzDBDQuery \
"UPDATE authn SET login = 'false' WHERE user = %s"