]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Correct stupid spelling errors
authorCraig Andrews <candrews@integralblue.com>
Wed, 11 Nov 2009 19:04:32 +0000 (14:04 -0500)
committerCraig Andrews <candrews@integralblue.com>
Wed, 11 Nov 2009 19:04:44 +0000 (14:04 -0500)
plugins/Authentication/AuthenticationPlugin.php
plugins/LdapAuthentication/LdapAuthenticationPlugin.php

index ef78c7ce405960838fccdb123afe07d4ab7a603d..e3e55fea606b635b1c346fb4698850ce99f1d9dc 100644 (file)
@@ -107,7 +107,7 @@ abstract class AuthenticationPlugin extends Plugin
         parent::__construct();
     }
     
-    function StartCheckPassword($nickname, $password, &$authenticatedUser){
+    function onStartCheckPassword($nickname, $password, &$authenticatedUser){
         if($this->password_changeable){
             $authenticated = $this->checkPassword($nickname, $password);
             if($authenticated){
index f14080b2d693855e7f22fa00e6c783d52629ec9e..d3ccd93b6d44ca8cf59711240a240bf3c3ba5838 100644 (file)
@@ -34,7 +34,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) {
 require_once INSTALLDIR.'/plugins/Authentication/AuthenticationPlugin.php';
 require_once 'Net/LDAP2.php';
 
-class LdapAuthenticatonPlugin extends AuthenticationPlugin
+class LdapAuthenticationPlugin extends AuthenticationPlugin
 {
     public $host=null;
     public $port=null;