Skip to content
Snippets Groups Projects
Commit 6d111ecd authored by Demian Katz's avatar Demian Katz
Browse files

Removed error suppression operator to ease debugging.

parent 57aab0a7
No related merge requests found
......@@ -63,7 +63,7 @@ class Factory
// Load up the handler if a legal name has been supplied.
$className = 'VuFind\\Auth\\' . $authNHandler;
if (@class_exists($className)) {
if (class_exists($className)) {
return new $className($config);
} else {
throw new AuthException(
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment