summaryrefslogtreecommitdiff
path: root/program/lib/Auth/SASL.php
diff options
context:
space:
mode:
Diffstat (limited to 'program/lib/Auth/SASL.php')
-rw-r--r--program/lib/Auth/SASL.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/program/lib/Auth/SASL.php b/program/lib/Auth/SASL.php
index 6e3dc34e4..9b7090c0f 100644
--- a/program/lib/Auth/SASL.php
+++ b/program/lib/Auth/SASL.php
@@ -91,7 +91,8 @@ class Auth_SASL
}
require_once($filename);
- return new $classname();
+ $obj = new $classname();
+ return $obj;
}
}