Merge changes from IMP 4.3.1 (in CVS HEAD).
authorMichael M Slusarz <slusarz@curecanti.org>
Wed, 10 Dec 2008 05:07:51 +0000 (22:07 -0700)
committerMichael M Slusarz <slusarz@curecanti.org>
Wed, 10 Dec 2008 05:14:34 +0000 (22:14 -0700)
imp/docs/CHANGES
imp/lib/IMAP/Tree.php
imp/lib/Search.php

index 711b068..8c18bab 100644 (file)
@@ -33,6 +33,8 @@ v5.0-cvs
 v4.3.1-cvs
 ----------
 
+[mms] Don't include Virtual Folder information in when tracking folder
+      tree changes (Bug #7739).
 [mms] Marked stripped parts as 'attachment', not 'inline' (Request #4664).
 [mms] Fix linking from addresses in mailbox to compose screen (Bug #7432).
 [jan] Use mailer configuration when sending iTip replies (Bug #7388).
index 422f261..fb0a661 100644 (file)
@@ -1486,7 +1486,7 @@ class IMP_IMAP_Tree
         foreach (array_keys($id) as $key) {
             $id_key = $this->VFOLDER_KEY . $this->_delimiter . $key;
             if (!isset($this->_tree[$id_key])) {
-                $adds[] = $this->VFOLDER_KEY . $this->_delimiter . $key;
+                $adds[] = $id_key;
             }
         }
 
index e6a5aab..909c217 100644 (file)
@@ -208,7 +208,7 @@ class IMP_Search
      *
      * @param string $id          The search query id to use (by default, will
      *                            use the current ID set in the object).
-     * @param boolean $no_delete  Don't delete the entry in
+     * @param boolean $no_delete  Don't delete the entry in the tree object.
      *
      * @return string  Returns the search query id.
      */