diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-04-17 08:43:42 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-04-17 08:43:42 +0000 |
| commit | af62e8109d2050575ac1678f333abf6564d496fa (patch) | |
| tree | 72453e109544cf4599f982e7fccd178dc3b36097 /roundcubemail/program/lib/Auth/SASL.php | |
| parent | f74619317417b6bc12504d71774dda1f9d20408b (diff) | |
- Updated PEAR::Auth_SASL to 1.0.2
git-svn-id: https://svn.roundcube.net/trunk@1322 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/lib/Auth/SASL.php')
| -rw-r--r-- | roundcubemail/program/lib/Auth/SASL.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/roundcubemail/program/lib/Auth/SASL.php b/roundcubemail/program/lib/Auth/SASL.php index 6e3dc34e4..9b7090c0f 100644 --- a/roundcubemail/program/lib/Auth/SASL.php +++ b/roundcubemail/program/lib/Auth/SASL.php @@ -91,7 +91,8 @@ class Auth_SASL } require_once($filename); - return new $classname(); + $obj = new $classname(); + return $obj; } } |
