summaryrefslogtreecommitdiff
path: root/program/lib/Auth/SASL.php
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2008-04-17 08:43:42 +0000
committeralecpl <alec@alec.pl>2008-04-17 08:43:42 +0000
commit15788164228a34cc3cb4d4886a74d42c9a757825 (patch)
treeb888fcaa58ac8fdb3fad50a61b105e902dc78736 /program/lib/Auth/SASL.php
parent0a97a039c4b35223ab8d23684185ae526c1bca2a (diff)
- Updated PEAR::Auth_SASL to 1.0.2
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;
}
}