diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2012-01-18 12:41:10 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2012-01-18 12:41:10 +0000 |
| commit | 8f652cd3b47e8fdf2c7a872a892be989c4d88c82 (patch) | |
| tree | b741d9b9a0c99c37bdbf41456160b7d25f6246f7 /roundcubemail/program/include/rcube_imap.php | |
| parent | 80bc41ee5476ce09bfad17d8a1cca84fe697d593 (diff) | |
- Fix call to undefined method rcube_imap::list_unsubscribed()
git-svn-id: https://svn.roundcube.net/trunk@5790 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/include/rcube_imap.php')
| -rw-r--r-- | roundcubemail/program/include/rcube_imap.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/roundcubemail/program/include/rcube_imap.php b/roundcubemail/program/include/rcube_imap.php index 6db15dd24..b6a44896e 100644 --- a/roundcubemail/program/include/rcube_imap.php +++ b/roundcubemail/program/include/rcube_imap.php @@ -2896,10 +2896,10 @@ class rcube_imap extends rcube_storage // get list of folders if ((strpos($folder, '%') === false) && (strpos($folder, '*') === false)) { - $sub_mboxes = $this->list_unsubscribed('', $folder . $delm . '*'); + $sub_mboxes = $this->list_folders('', $folder . $delm . '*'); } else { - $sub_mboxes = $this->list_unsubscribed(); + $sub_mboxes = $this->list_folders(); } // send delete command to server |
