You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rb...@apache.org on 2017/05/26 16:17:17 UTC

svn commit: r1796297 - /httpd/httpd/branches/2.4.x/docs/manual/mod/mod_authz_dbd.xml

Author: rbowen
Date: Fri May 26 16:17:17 2017
New Revision: 1796297

URL: http://svn.apache.org/viewvc?rev=1796297&view=rev
Log:
fix confusing indentation of examples

Modified:
    httpd/httpd/branches/2.4.x/docs/manual/mod/mod_authz_dbd.xml

Modified: httpd/httpd/branches/2.4.x/docs/manual/mod/mod_authz_dbd.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/mod/mod_authz_dbd.xml?rev=1796297&r1=1796296&r2=1796297&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/docs/manual/mod/mod_authz_dbd.xml (original)
+++ httpd/httpd/branches/2.4.x/docs/manual/mod/mod_authz_dbd.xml Fri May 26 16:17:17 2017
@@ -69,8 +69,8 @@
     user to gain access.</p>
 
     <highlight language="config">
-      Require dbd-group team
-      AuthzDBDQuery "SELECT group FROM authz WHERE user = %s"
+Require dbd-group team
+AuthzDBDQuery "SELECT group FROM authz WHERE user = %s"
     </highlight>
 
 </section>
@@ -81,8 +81,8 @@
     has logged in.</p>
 
     <highlight language="config">
-      Require dbd-login
-      AuthzDBDQuery "UPDATE authn SET login = 'true' WHERE user = %s"
+Require dbd-login
+AuthzDBDQuery "UPDATE authn SET login = 'true' WHERE user = %s"
     </highlight>
 
 </section>
@@ -93,8 +93,8 @@
     has logged out.</p>
 
     <highlight language="config">
-      Require dbd-logout
-      AuthzDBDQuery "UPDATE authn SET login = 'false' WHERE user = %s"
+Require dbd-logout
+AuthzDBDQuery "UPDATE authn SET login = 'false' WHERE user = %s"
     </highlight>
 
 </section>