diff options
author | Aleksander Machniak (Kolab Systems) <machniak@kolabsys.com> | 2012-10-10 09:35:08 (GMT) |
---|---|---|
committer | Aleksander Machniak (Kolab Systems) <machniak@kolabsys.com> | 2012-10-10 09:35:08 (GMT) |
commit | af8f351ed45f57edc4b9a9e8f094899ebdcab5ab (patch) | |
tree | 2f4c17acf1a9a76b8c0e64410939c8ff9c9b3c45 | |
parent | 8b6ba3cdfc4bfa5af6fe9d34342b04716746c254 (diff) | |
download | roundcubemail-plugins-kolab-af8f351ed45f57edc4b9a9e8f094899ebdcab5ab.tar.gz |
Fix PHP Fatal error: Call to undefined method rcube_imap::get_headers() (Bug #950)
-rw-r--r-- | plugins/calendar/calendar.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/calendar/calendar.php b/plugins/calendar/calendar.php index 70b1e22..d380963 100644 --- a/plugins/calendar/calendar.php +++ b/plugins/calendar/calendar.php @@ -2175,7 +2175,7 @@ class calendar extends rcube_plugin $part = $this->rc->imap->get_message_part($uid, $mime_id); if ($part->ctype_parameters['charset']) $charset = $part->ctype_parameters['charset']; - $headers = $this->rc->imap->get_headers($uid); + $headers = $this->rc->imap->get_message_headers($uid); } $events = $this->get_ical()->import($part, $charset); |