]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
remove invalid calls to AuthenticationPlugin::onAutoload
authorCraig Andrews <candrews@integralblue.com>
Wed, 6 Jan 2010 05:22:19 +0000 (00:22 -0500)
committerCraig Andrews <candrews@integralblue.com>
Wed, 6 Jan 2010 05:22:19 +0000 (00:22 -0500)
plugins/CasAuthentication/CasAuthenticationPlugin.php
plugins/LdapAuthentication/LdapAuthenticationPlugin.php

index 26f21af16029bb242b69a42216ad666d296b66b0..818a11f77e19ce76abc51881ca392b928952c08e 100644 (file)
@@ -57,8 +57,6 @@ class CasAuthenticationPlugin extends AuthenticationPlugin
          case 'CasloginAction':
             require_once(INSTALLDIR.'/plugins/CasAuthentication/' . strtolower(mb_substr($cls, 0, -6)) . '.php');
             return false;
-         default:
-            return parent::onAutoload($cls);
         }
     }
 
index af42be761e6dd17532a4aaa4c9ebed2c4b40b52d..c14fa21a9c66c74c35bb3d275662e3ab91673b29 100644 (file)
@@ -74,8 +74,6 @@ class LdapAuthenticationPlugin extends AuthenticationPlugin
          case 'MemcacheSchemaCache':
             require_once(INSTALLDIR.'/plugins/LdapAuthentication/MemcacheSchemaCache.php');
             return false;
-         default:
-            return parent::onAutoload($cls);
         }
     }