Skip to content

Commit

Permalink
[mms] Fix double listing of mailboxes in certain instances when subsc…
Browse files Browse the repository at this point in the history
…riptions are active and unsubscribed mailboxes are shown.
  • Loading branch information
slusarz committed Jan 16, 2015
1 parent c672e21 commit 8e015d3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 2 additions & 0 deletions imp/docs/CHANGES
Expand Up @@ -2,6 +2,8 @@
v6.2.6-git
----------

[mms] Fix double listing of mailboxes in certain instances when subscriptions
are active and unsubscribed mailboxes are shown.


------
Expand Down
4 changes: 3 additions & 1 deletion imp/lib/Ftree.php
Expand Up @@ -784,7 +784,9 @@ protected function _insertElt($elt)
if (!isset($this->_parent[$parent])) {
$this->eltdiff->change($p_elt);
}
$this->_parent[$parent][] = $name;
if (!isset($this->_elts[$name])) {
$this->_parent[$parent][] = $name;
}
$this->_elts[$name] = $elt['a'];

if ($change) {
Expand Down
4 changes: 2 additions & 2 deletions imp/package.xml
Expand Up @@ -33,7 +33,7 @@
</stability>
<license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
<notes>
*
* [mms] Fix double listing of mailboxes in certain instances when subscriptions are active and unsubscribed mailboxes are shown.
</notes>
<contents>
<dir baseinstalldir="/" name="/">
Expand Down Expand Up @@ -3798,7 +3798,7 @@
<date>2015-01-14</date>
<license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
<notes>
*
* [mms] Fix double listing of mailboxes in certain instances when subscriptions are active and unsubscribed mailboxes are shown.
</notes>
</release>
</changelog>
Expand Down

0 comments on commit 8e015d3

Please sign in to comment.