- Fix call to undefined method rcube_imap::list_unsubscribed()

pull/1/head
alecpl 13 years ago
parent 50d6e918e1
commit 0457c5d101

@ -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

Loading…
Cancel
Save