Add authenticate capability to Customsql, Ldap, and Passwd drivers also
authorMichael J. Rubinsky <mrubinsk@horde.org>
Thu, 10 Dec 2009 23:07:57 +0000 (18:07 -0500)
committerMichael J. Rubinsky <mrubinsk@horde.org>
Thu, 10 Dec 2009 23:07:57 +0000 (18:07 -0500)
framework/Auth/lib/Horde/Auth/Customsql.php
framework/Auth/lib/Horde/Auth/Ldap.php
framework/Auth/lib/Horde/Auth/Passwd.php

index ca1ed8b..1c558e7 100644 (file)
@@ -51,7 +51,8 @@ class Horde_Auth_Customsql extends Horde_Auth_Sql
         'list' => true,
         'remove' => true,
         'resetpassword' => true,
-        'update' => true
+        'update' => true,
+        'authenticate' => true,
     );
 
     /**
index f6a23fe..acd10fe 100644 (file)
@@ -45,7 +45,8 @@ class Horde_Auth_Ldap extends Horde_Auth_Base
         'add' => true,
         'update' => true,
         'remove' => true,
-        'list' => true
+        'list' => true,
+        'authenticate' => true,
     );
 
     /**
index 14dca9f..6bd8aab 100644 (file)
@@ -42,7 +42,8 @@ class Horde_Auth_Passwd extends Horde_Auth_Base
      * @var array
      */
     protected $_capabilities = array(
-        'list' => true
+        'list' => true,
+        'authentication' => true,
     );
 
     /**