Commit 474c427f9034a5090b8da133d7abe0f518658f86

Authored by Michael Joseph
1 parent c33004b8

fixed mailto in phpdoc header comments

and updated require paths to lib/authentication


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@261 c91229c3-7414-0410-bfa2-8a42b809f60b
lib/authentication/DBAuthenticator.inc
... ... @@ -8,7 +8,7 @@ require_once("$default->owl_fs_root/lib/authentication/Authenticator.inc");
8 8 * Perform authentication tasks against the database.
9 9 *
10 10 * @version $Revision$
11   - * @author <a href="mailto:michael@jamwarehouse.com>Michael Joseph</a>, Jam Warehouse (Pty) Ltd, South Africa
  11 + * @author <a href="mailto:michael@jamwarehouse.com">Michael Joseph</a>, Jam Warehouse (Pty) Ltd, South Africa
12 12 * @package dmslib
13 13 */
14 14  
... ...
lib/authentication/LDAPAuthenticator.inc
1 1 <?php
2 2  
3   -require_once("./lib/class.AuthLdap.php");
4   -require_once("$default->owl_fs_root/lib/Authenticator.inc");
  3 +require_once("$default->owl_fs_root/lib/authentication/class.AuthLdap.php");
  4 +require_once("$default->owl_fs_root/lib/authentication/Authenticator.inc");
5 5  
6 6 /**
7 7 * $Id$
... ... @@ -9,7 +9,7 @@ require_once(&quot;$default-&gt;owl_fs_root/lib/Authenticator.inc&quot;);
9 9 * Perform authentication tasks against LDAP compliant directory server.
10 10 *
11 11 * @version $Revision$
12   - * @author <a href="mailto:michael@jamwarehouse.com>Michael Joseph</a>, Jam Warehouse (Pty) Ltd, South Africa
  12 + * @author <a href="mailto:michael@jamwarehouse.com">Michael Joseph</a>, Jam Warehouse (Pty) Ltd, South Africa
13 13 * @package dmslib
14 14 */
15 15 class LDAPAuthenticator extends Authenticator {
... ...