Skip to content
Snippets Groups Projects
Commit daf6b8f4 authored by Lionel Walter's avatar Lionel Walter Committed by Robert Lange
Browse files

Display AND operator in filter list (#1348)

parent 49659eb2
No related merge requests found
...@@ -20,6 +20,7 @@ ...@@ -20,6 +20,7 @@
<span class="sr-only"><?=$this->transEsc('clear_tag_filter') ?></span> <span class="sr-only"><?=$this->transEsc('clear_tag_filter') ?></span>
<span class="text"> <span class="text">
<?php if ($filter['operator'] == 'NOT'): ?><?=$this->transEsc('NOT') ?><?php endif; ?> <?php if ($filter['operator'] == 'NOT'): ?><?=$this->transEsc('NOT') ?><?php endif; ?>
<?php if ($filter['operator'] == 'AND' && $i > 0): ?><?=$this->transEsc('AND') ?><?php endif; ?>
<?php if ($filter['operator'] == 'OR' && $i > 0): ?><?=$this->transEsc('OR') ?><?php endif; ?> <?php if ($filter['operator'] == 'OR' && $i > 0): ?><?=$this->transEsc('OR') ?><?php endif; ?>
<?=$this->transEsc($field) ?>: <?=$this->escapeHtml($filter['displayText']) ?> <?=$this->transEsc($field) ?>: <?=$this->escapeHtml($filter['displayText']) ?>
</span> </span>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment