From eeaa391846a8f33a50c71f212910a86b2425fab1 Mon Sep 17 00:00:00 2001 From: Demian Katz <demian.katz@villanova.edu> Date: Fri, 31 Aug 2012 08:29:37 -0400 Subject: [PATCH] Fixed bug -- missing return. --- module/VuFind/src/VuFind/Auth/Factory.php | 1 + 1 file changed, 1 insertion(+) diff --git a/module/VuFind/src/VuFind/Auth/Factory.php b/module/VuFind/src/VuFind/Auth/Factory.php index 1b85153141d..f2404893ad4 100644 --- a/module/VuFind/src/VuFind/Auth/Factory.php +++ b/module/VuFind/src/VuFind/Auth/Factory.php @@ -68,6 +68,7 @@ class Factory if (null !== $config) { $obj->setConfig($config); } + return $obj; } else { throw new AuthException( 'Authentication handler ' . $authNHandler . ' does not exist!' -- GitLab