Commit c40dc4dcf7d7fe86bd19bb1c65c184d17397520e

Authored by nbm
1 parent c0814c25

getAuthenticator gets passed an authentication source object, so that

the authenticator is set with all the information it needs to
authenticate the user.


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@4196 c91229c3-7414-0410-bfa2-8a42b809f60b
lib/authentication/authenticationprovider.inc.php
@@ -13,8 +13,9 @@ class KTAuthenticationProvider extends KTStandardDispatcher { @@ -13,8 +13,9 @@ class KTAuthenticationProvider extends KTStandardDispatcher {
13 $this->aInfo = $aInfo; 13 $this->aInfo = $aInfo;
14 } 14 }
15 15
16 - function &getAuthenticator() {  
17 - return $this; 16 + function &getAuthenticator($oSource) {
  17 + // Not implemented
  18 + return null;
18 } 19 }
19 20
20 function &getSource() { 21 function &getSource() {