diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-11-02 07:37:06 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-11-02 07:37:06 +0000 |
| commit | 05e584f5a645f5083c12ccaf62dcef79a2a3886f (patch) | |
| tree | e845624b6332366827c20f855dfe2f97ace8ca34 /roundcubemail/program | |
| parent | c43931cc41c801e1082b4e63c2598d2e0ac61942 (diff) | |
- Fix imap_auth_type regression (#1486263)
git-svn-id: https://svn.roundcube.net/trunk@3084 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program')
| -rw-r--r-- | roundcubemail/program/lib/imap.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/lib/imap.inc b/roundcubemail/program/lib/imap.inc index 9d896ffe0..964d12d99 100644 --- a/roundcubemail/program/lib/imap.inc +++ b/roundcubemail/program/lib/imap.inc @@ -554,7 +554,7 @@ function iil_Connect($host, $user, $password, $options=null) { // set some imap options if (is_array($options)) { foreach($options as $optkey => $optval) { - if ($optkey == 'imap') { + if ($optkey == 'auth_method') { $auth_method = strtoupper($optval); } else if ($optkey == 'rootdir') { $my_prefs['rootdir'] = $optval; |
