diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2012-05-20 19:19:13 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2012-05-20 19:19:13 +0200 |
commit | 1d5b73fd7752d116f6cf507843a22b00a995e42c (patch) | |
tree | 9529424baf255e947991d56496cb9f8e796b5c51 /program/include | |
parent | 6734a8328e417c8f3dfdf100ea66c16a716a8546 (diff) |
Add lost method for backwards compatibility
Diffstat (limited to 'program/include')
-rw-r--r-- | program/include/rcube_imap.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/program/include/rcube_imap.php b/program/include/rcube_imap.php index 7a86b170b..f02c52aeb 100644 --- a/program/include/rcube_imap.php +++ b/program/include/rcube_imap.php @@ -3940,6 +3940,11 @@ class rcube_imap extends rcube_storage return $this->list_messages($folder, $page, $sort_field, $sort_order, $slice); } + public function get_headers($uid, $folder = null, $force = false) + { + return $this->get_message_headers($uid, $folder, $force); + } + public function mailbox_status($folder = null) { return $this->folder_status($folder); |