From: Craig Andrews Date: Thu, 31 Dec 2009 00:16:32 +0000 (-0500) Subject: Add missing required line so this plugin works if it's the first (or only) Authentica... X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=176e0fdab787d7265b58c76ce6312e9f519f4124;p=quix0rs-gnu-social.git Add missing required line so this plugin works if it's the first (or only) Authentication Plugin in use --- diff --git a/plugins/CasAuthentication/CasAuthenticationPlugin.php b/plugins/CasAuthentication/CasAuthenticationPlugin.php index 428aafb024..8b6ef54621 100644 --- a/plugins/CasAuthentication/CasAuthenticationPlugin.php +++ b/plugins/CasAuthentication/CasAuthenticationPlugin.php @@ -34,6 +34,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { // We bundle the phpCAS library... set_include_path(get_include_path() . PATH_SEPARATOR . dirname(__FILE__) . '/extlib/CAS'); +require_once INSTALLDIR.'/plugins/Authentication/AuthenticationPlugin.php'; class CasAuthenticationPlugin extends AuthenticationPlugin { public $server;