From 3225ec348f6e9ec95a45812791076a9765002a90 Mon Sep 17 00:00:00 2001 From: Demian Katz <demian.katz@villanova.edu> Date: Tue, 24 Oct 2017 15:28:48 -0400 Subject: [PATCH] No spaces after function names. --- themes/bootstrap3/templates/Recommend/FacetCloud.phtml | 2 +- themes/bootstrap3/templates/RecordDriver/EDS/core.phtml | 2 +- themes/bootstrap3/templates/RecordDriver/EDS/result-list.phtml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/themes/bootstrap3/templates/Recommend/FacetCloud.phtml b/themes/bootstrap3/templates/Recommend/FacetCloud.phtml index 1650692b57e..c71334d4d57 100644 --- a/themes/bootstrap3/templates/Recommend/FacetCloud.phtml +++ b/themes/bootstrap3/templates/Recommend/FacetCloud.phtml @@ -12,7 +12,7 @@ <? foreach ($facets['list'] as $i => $facetItem) { if ($i < $cloudLimit) { - echo (($i == 0) ? '' : ', ') + echo(($i == 0) ? '' : ', ') . '<a href="' . $blankResults->getUrlQuery()->addFacet($title, $facetItem['value']) . '">' . $this->escapeHtml($facetItem['displayText']) . '</a> (' . $this->escapeHtml($facetItem['count']) . ')'; diff --git a/themes/bootstrap3/templates/RecordDriver/EDS/core.phtml b/themes/bootstrap3/templates/RecordDriver/EDS/core.phtml index c686dd3bb8e..82de7fa337b 100644 --- a/themes/bootstrap3/templates/RecordDriver/EDS/core.phtml +++ b/themes/bootstrap3/templates/RecordDriver/EDS/core.phtml @@ -93,7 +93,7 @@ <? foreach ($customLinks as $customLink): ?> <? $url = isset($customLink['Url']) ? $customLink['Url'] : ''; $mot = isset($customLink['MouseOverText'])? $customLink['MouseOverText'] : ''; - $icon = isset ($customLink['Icon']) ? $customLink['Icon'] : ''; + $icon = isset($customLink['Icon']) ? $customLink['Icon'] : ''; $name = isset($customLink['Text']) ? $customLink['Text'] : ''; ?> <span> diff --git a/themes/bootstrap3/templates/RecordDriver/EDS/result-list.phtml b/themes/bootstrap3/templates/RecordDriver/EDS/result-list.phtml index 65337cb47df..88a64ebb8db 100644 --- a/themes/bootstrap3/templates/RecordDriver/EDS/result-list.phtml +++ b/themes/bootstrap3/templates/RecordDriver/EDS/result-list.phtml @@ -63,7 +63,7 @@ <? foreach ($customLinks as $customLink): ?> <? $url = isset($customLink['Url']) ? $customLink['Url'] : ''; $mot = isset($customLink['MouseOverText'])? $customLink['MouseOverText'] : ''; - $icon = isset ($customLink['Icon']) ? $customLink['Icon'] : ''; + $icon = isset($customLink['Icon']) ? $customLink['Icon'] : ''; $name = isset($customLink['Text']) ? $customLink['Text'] : ''; ?> <span> -- GitLab