From: Christophe Jaillet Date: Tue, 3 May 2022 19:56:29 +0000 (+0000) Subject: httpd 2.4.x and above require at least APR 1.3, so this is always the case. X-Git-Tag: 2.5.0-alpha2-ci-test-only~356 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=06a4fc97d7309b4335efb1e6c646295d8bddd45f;p=thirdparty%2Fapache%2Fhttpd.git httpd 2.4.x and above require at least APR 1.3, so this is always the case. Simplify the wording in the doc. [skip ci] git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1900525 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_authn_dbd.xml b/docs/manual/mod/mod_authn_dbd.xml index 9266cb89b11..f0711abf969 100644 --- a/docs/manual/mod/mod_authn_dbd.xml +++ b/docs/manual/mod/mod_authn_dbd.xml @@ -107,8 +107,7 @@ DBDExptime 300
Exposing Login Information

-If httpd was built against APR version 1.3.0 -or higher, then whenever a query is made to the database server, all +Whenever a query is made to the database server, all column values in the first row returned by the query are placed in the environment, using environment variables with the prefix "AUTHENTICATE_".

@@ -152,8 +151,7 @@ AuthDBDUserPWQuery "SELECT password FROM authn WHERE user = %s" statement should be a string containing the encrypted password. Subsequent rows will be ignored. If no rows are returned, the user will not be authenticated through mod_authn_dbd.

-

If httpd was built against APR version 1.3.0 - or higher, any additional column values in the first row returned by +

Any additional column values in the first row returned by the query statement will be stored as environment variables with names of the form AUTHENTICATE_COLUMN.

@@ -187,8 +185,7 @@ AuthDBDUserRealmQuery "SELECT password FROM authn WHERE user = %s AND realm = %s statement should be a string containing the encrypted password. Subsequent rows will be ignored. If no rows are returned, the user will not be authenticated through mod_authn_dbd.

-

If httpd was built against APR version 1.3.0 - or higher, any additional column values in the first row returned by +

Any additional column values in the first row returned by the query statement will be stored as environment variables with names of the form AUTHENTICATE_COLUMN.