summaryrefslogtreecommitdiff
path: root/includes/classes/BaseAuth.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/classes/BaseAuth.php')
-rwxr-xr-xincludes/classes/BaseAuth.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/classes/BaseAuth.php b/includes/classes/BaseAuth.php
index dfea52e..11fc29e 100755
--- a/includes/classes/BaseAuth.php
+++ b/includes/classes/BaseAuth.php
@@ -177,7 +177,7 @@ class BaseAuth {
} elseif (!empty($pAuthMixed)) {
$authPlugin=BaseAuth::getAuthMethod( $pAuthMixed );
if (file_exists( $authPlugin['file'] )) {
-// require_once $authPlugin['file'];
+ require_once $authPlugin['file'];
$cl = $authPlugin['class'];
$instance = new $cl();
if( $instance->isSupported() ) {