FormDataFilter: flip button order

This commit is contained in:
Thomas Gelf 2016-10-21 18:06:05 +00:00
parent a819e7c92c
commit 8519a287dc
1 changed files with 1 additions and 1 deletions

View File

@ -111,8 +111,8 @@ class Zend_View_Helper_FormDataFilter extends Zend_View_Helper_FormElement
. '"><span class="handle"> </span>'
. $this->selectOperator($filter)
. $this->removeLink($filter)
. ($filter->count() === 1 ? $this->stripLink($filter) : '')
. $this->addLink($filter)
. ($filter->count() === 1 ? $this->stripLink($filter) : '')
. $list;
}