diff options
author | Aleksander Machniak <alec@alec.pl> | 2012-05-22 09:24:53 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2012-05-22 09:24:53 +0200 |
commit | 38a08c08e3c641421e91ef7855ec8f6dc37a3cb4 (patch) | |
tree | 4e58328593c61114a30a6038fb6ebe141da811eb | |
parent | 5c7e54b1756367a502367a2918a77fdb3dba4ee2 (diff) |
Add imap_connect() method for backward compat.
-rw-r--r-- | program/include/rcmail.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/program/include/rcmail.php b/program/include/rcmail.php index bd21ca8a2..7f9d7af06 100644 --- a/program/include/rcmail.php +++ b/program/include/rcmail.php @@ -2006,4 +2006,9 @@ class rcmail extends rcube { rcube_utils::setcookie($name, $value, $exp); } + + public function imap_connect() + { + return $this->storage_connect(); + } } |