diff options
author | alecpl <alec@alec.pl> | 2008-04-17 08:43:42 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2008-04-17 08:43:42 +0000 |
commit | 15788164228a34cc3cb4d4886a74d42c9a757825 (patch) | |
tree | b888fcaa58ac8fdb3fad50a61b105e902dc78736 /program/lib/Auth/SASL.php | |
parent | 0a97a039c4b35223ab8d23684185ae526c1bca2a (diff) |
- Updated PEAR::Auth_SASL to 1.0.2
Diffstat (limited to 'program/lib/Auth/SASL.php')
-rw-r--r-- | program/lib/Auth/SASL.php | 3 |
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; } } |