Don't double encode mailbox names
authorMichael M Slusarz <slusarz@curecanti.org>
Wed, 8 Sep 2010 20:37:40 +0000 (14:37 -0600)
committerMichael M Slusarz <slusarz@curecanti.org>
Wed, 8 Sep 2010 21:26:13 +0000 (15:26 -0600)
imp/lib/Tree/Flist.php

index 1a65235..410b1e1 100644 (file)
@@ -182,7 +182,7 @@ class IMP_Tree_Flist extends Horde_Tree_Select
         if ($abbrev = $this->getOption('abbrev')) {
             $node = &$this->_nodes[$node_id];
             $orig_label = $node['label'];
-            $node['label'] = htmlspecialchars(Horde_String::abbreviate($node['orig_label'], $abbrev - ($node['indent'] * 2)));
+            $node['label'] = Horde_String::abbreviate($node['orig_label'], $abbrev - ($node['indent'] * 2));
         } else {
             $orig_label = null;
         }