Skip to content
Snippets Groups Projects
Commit a53f0765 authored by Demian Katz's avatar Demian Katz
Browse files

Fixed HTML encoding issue.

parent 2929f514
No related merge requests found
...@@ -170,7 +170,7 @@ JS; ...@@ -170,7 +170,7 @@ JS;
<? if ($i == $facets_before_more): ?> <? if ($i == $facets_before_more): ?>
<? $idAndClass = 'id="more-narrowGroupHidden-'.$this->escapeHtmlAttr($title).'" class="list-group-item narrow-toggle"'; ?> <? $idAndClass = 'id="more-narrowGroupHidden-'.$this->escapeHtmlAttr($title).'" class="list-group-item narrow-toggle"'; ?>
<? if ($facetLightbox = $options->getFacetListAction()): ?> <? if ($facetLightbox = $options->getFacetListAction()): ?>
<? $moreUrl = $this->url($facetLightbox) . $results->getUrlQuery()->getParams().'&facet='.$title.'&facetop='.$thisFacet['operator'].'&facetexclude='.($allowExclude ? 1 : 0); ?> <? $moreUrl = $this->url($facetLightbox) . $results->getUrlQuery()->getParams().'&amp;facet='.$title.'&amp;facetop='.$thisFacet['operator'].'&amp;facetexclude='.($allowExclude ? 1 : 0); ?>
<? else: ?> <? else: ?>
<? $moreUrl = '#'; ?> <? $moreUrl = '#'; ?>
<? endif; ?> <? endif; ?>
...@@ -219,7 +219,7 @@ JS; ...@@ -219,7 +219,7 @@ JS;
<? endif; ?> <? endif; ?>
<? endforeach; ?> <? endforeach; ?>
<? if ($showMoreInLightbox === 'more' && $facetLightbox = $options->getFacetListAction()): ?> <? if ($showMoreInLightbox === 'more' && $facetLightbox = $options->getFacetListAction()): ?>
<? $moreUrl = $this->url($facetLightbox) . $results->getUrlQuery()->getParams().'&facet='.$title.'&facetop='.$thisFacet['operator'].'&facetexclude='.($allowExclude ? 1 : 0); ?> <? $moreUrl = $this->url($facetLightbox) . $results->getUrlQuery()->getParams().'&amp;facet='.$title.'&amp;facetop='.$thisFacet['operator'].'&amp;facetexclude='.($allowExclude ? 1 : 0); ?>
<a class="list-group-item narrow-toggle <?=$moreClass ?>" data-lightbox href="<?=$moreUrl ?>" rel="nofollow"><?=$this->transEsc('see all')?> ...</a> <a class="list-group-item narrow-toggle <?=$moreClass ?>" data-lightbox href="<?=$moreUrl ?>" rel="nofollow"><?=$this->transEsc('see all')?> ...</a>
<? endif; ?> <? endif; ?>
<? if ($i >= $facets_before_more): ?><a class="list-group-item narrow-toggle <?=$moreClass ?>" href="#" onclick="return lessFacets('narrowGroupHidden-<?=$this->escapeHtmlAttr($title) ?>')"><?=$this->transEsc('less')?> ...</a><? endif; ?> <? if ($i >= $facets_before_more): ?><a class="list-group-item narrow-toggle <?=$moreClass ?>" href="#" onclick="return lessFacets('narrowGroupHidden-<?=$this->escapeHtmlAttr($title) ?>')"><?=$this->transEsc('less')?> ...</a><? endif; ?>
......
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