diff options
author | alecpl <alec@alec.pl> | 2009-08-06 09:21:55 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2009-08-06 09:21:55 +0000 |
commit | 00e57d191d7d3223f17709f2bd3afec116e24159 (patch) | |
tree | c3199ca258310fdd11a38ad1761869c558e3b260 /program/lib/Auth/SASL.php | |
parent | 446364845184329004815a61a5db8ed9057a5560 (diff) |
- Updated PEAR::Auth_SASL to 1.0.3 version
Diffstat (limited to 'program/lib/Auth/SASL.php')
-rw-r--r-- | program/lib/Auth/SASL.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/program/lib/Auth/SASL.php b/program/lib/Auth/SASL.php index 9b7090c0f..b2be93cc8 100644 --- a/program/lib/Auth/SASL.php +++ b/program/lib/Auth/SASL.php @@ -75,6 +75,11 @@ class Auth_SASL $classname = 'Auth_SASL_Plain'; break; + case 'external': + $filename = 'Auth/SASL/External.php'; + $classname = 'Auth_SASL_External'; + break; + case 'crammd5': $filename = 'Auth/SASL/CramMD5.php'; $classname = 'Auth_SASL_CramMD5'; @@ -96,4 +101,4 @@ class Auth_SASL } } -?>
\ No newline at end of file +?> |