From 81b0d4e05654b87aa60d0aa97e16a76ee3d513ca Mon Sep 17 00:00:00 2001 From: Neil Blakey-Milner Date: Sun, 27 Nov 2005 20:15:10 +0000 Subject: [PATCH] getAuthenticator gets passed an authentication source object, so that the authenticator is set with all the information it needs to authenticate the user. --- lib/authentication/authenticationprovider.inc.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/authentication/authenticationprovider.inc.php b/lib/authentication/authenticationprovider.inc.php index a279891..b18a3e0 100644 --- a/lib/authentication/authenticationprovider.inc.php +++ b/lib/authentication/authenticationprovider.inc.php @@ -13,8 +13,9 @@ class KTAuthenticationProvider extends KTStandardDispatcher { $this->aInfo = $aInfo; } - function &getAuthenticator() { - return $this; + function &getAuthenticator($oSource) { + // Not implemented + return null; } function &getSource() { -- libgit2 0.21.4