From 69ff26d64fbf091f883751cb74b10711a107adc4 Mon Sep 17 00:00:00 2001 From: Claas Kazzer <kazzer@uni-leipzig.de> Date: Wed, 16 Dec 2015 14:35:44 +0100 Subject: [PATCH] resf #6671: * fixed unclosed li for multiselect facets --- themes/foundation5/templates/Recommend/SideFacets.phtml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/themes/foundation5/templates/Recommend/SideFacets.phtml b/themes/foundation5/templates/Recommend/SideFacets.phtml index 4308817ce41..1106e08df1e 100644 --- a/themes/foundation5/templates/Recommend/SideFacets.phtml +++ b/themes/foundation5/templates/Recommend/SideFacets.phtml @@ -182,8 +182,8 @@ JS; </li> <? endif; ?> <? if ($thisFacet['isApplied']): ?> - <li class="list-group-item active<? if ($i >= $facets_before_more): ?><?= $moreClass ?>"<? endif ?>> - <a class="active <? if ($thisFacet['operator'] == 'OR'): ?> facetOR applied<? endif ?>" href="<?= $this->currentPath() . $results->getUrlQuery()->removeFacet($title, $thisFacet['value'], true, $thisFacet['operator']) ?>"> + <li class="<? if ($i >= $facets_before_more): ?> <?= $moreClass ?> <? endif ?>" > + <a class="active <? if ($thisFacet['operator'] == 'OR'): ?> facetOR applied<? endif ?>" href="<?= $this->currentPath() . $results->getUrlQuery()->removeFacet($title, $thisFacet['value'], true, $thisFacet['operator']) ?>" > <? if ($thisFacet['operator'] == 'OR'): ?> <i class="fa fa-check-square-o"></i> <? else: ?> -- GitLab