From: Michael M Slusarz Date: Tue, 29 Sep 2009 04:09:57 +0000 (-0600) Subject: Add deleted vfolders to eltdiff list. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=6197caa0f256eddb31ea7800827d8f5d2b548fc4;p=horde.git Add deleted vfolders to eltdiff list. --- diff --git a/imp/lib/Imap/Tree.php b/imp/lib/Imap/Tree.php index a1a19686a..1703737ca 100644 --- a/imp/lib/Imap/Tree.php +++ b/imp/lib/Imap/Tree.php @@ -802,6 +802,10 @@ class IMP_Imap_Tree $parent = $this->_tree[$id]['p']; unset($this->_tree[$id]); + if (!is_null($this->_eltdiff)) { + $this->_eltdiff['d'][$id] = 1; + } + /* Delete the entry from the parent tree. */ $key = array_search($id, $this->_parent[$parent]); unset($this->_parent[$parent][$key]);