Commit c40dc4dcf7d7fe86bd19bb1c65c184d17397520e
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
Showing
1 changed file
with
3 additions
and
2 deletions
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() { | ... | ... |