remove invalid calls to AuthenticationPlugin::onAutoload

This commit is contained in:
Craig Andrews 2010-01-06 00:22:19 -05:00
parent 3b5299b5ca
commit 0f6ccee6d3
2 changed files with 0 additions and 4 deletions

View 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);
}
}

View 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);
}
}