From: Christophe Jaillet Date: Tue, 3 May 2022 19:58:01 +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.4.54-rc1-candidate~96 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2ba68db89d44b34ac40e090c0e51ce94f69788d9;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. r1900525 in trunk [skip ci] git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1900526 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_authn_dbd.xml b/docs/manual/mod/mod_authn_dbd.xml index 4801f207844..f1d9fd58fb1 100644 --- a/docs/manual/mod/mod_authn_dbd.xml +++ b/docs/manual/mod/mod_authn_dbd.xml @@ -108,8 +108,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_".

@@ -142,8 +141,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.

@@ -177,8 +175,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.