summaryrefslogtreecommitdiff
path: root/roundcubemail/program/include/rcmail.php
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2009-09-20 10:25:14 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2009-09-20 10:25:14 +0000
commitdcf634cf5ad6e75ad3c7df15bc071f5151d2417a (patch)
treebd3a3a7e0a6b0c49555ba4aae9ee84ceeb45ab2a /roundcubemail/program/include/rcmail.php
parenta266a56bfa1a51b45d79213c26c30e43ec08a2af (diff)
- small code improvements
git-svn-id: https://svn.roundcube.net/trunk@2974 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/include/rcmail.php')
-rw-r--r--roundcubemail/program/include/rcmail.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/include/rcmail.php b/roundcubemail/program/include/rcmail.php
index b148e5168..be9074054 100644
--- a/roundcubemail/program/include/rcmail.php
+++ b/roundcubemail/program/include/rcmail.php
@@ -378,7 +378,7 @@ class rcmail
// Setting root and delimiter before iil_Connect can save time detecting them
// using NAMESPACE and LIST
$options = array(
- 'imap' => $this->config->get('imap_auth_type', 'check'),
+ 'auth_method' => $this->config->get('imap_auth_type', 'check'),
'delimiter' => isset($_SESSION['imap_delimiter']) ? $_SESSION['imap_delimiter'] : $this->config->get('imap_delimiter'),
'rootdir' => isset($_SESSION['imap_root']) ? $_SESSION['imap_root'] : $this->config->get('imap_root'),
'debug_mode' => (bool) $this->config->get('imap_debug', 0),