Skip to content

Commit

Permalink
Fix logic typo
Browse files Browse the repository at this point in the history
  • Loading branch information
slusarz committed Nov 27, 2014
1 parent 5a02568 commit b6abbe2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion imp/lib/Ftree.php
Expand Up @@ -758,7 +758,7 @@ protected function _insertElt($elt)

$change = false;
if (isset($this->_elts[$name])) {
if ($elt['a'] && self::ELT_NOSELECT) {
if ($elt['a'] & self::ELT_NOSELECT) {
return;
}
$change = true;
Expand Down

0 comments on commit b6abbe2

Please sign in to comment.