Commit 81b0d4e05654b87aa60d0aa97e16a76ee3d513ca

Authored by Neil Blakey-Milner
1 parent e1bc2616

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 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 21 function &getSource() {
... ...