From e561644bd4ea68ee0209fde7d3c36f3e96a6230f Mon Sep 17 00:00:00 2001 From: Demian Katz <demian.katz@villanova.edu> Date: Tue, 6 Oct 2020 13:45:51 -0400 Subject: [PATCH] Fix mismatched slot names. (#1722) --- themes/bootstrap3/templates/search/home.phtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/bootstrap3/templates/search/home.phtml b/themes/bootstrap3/templates/search/home.phtml index b9b0c453f4f..5c7d81c0aec 100644 --- a/themes/bootstrap3/templates/search/home.phtml +++ b/themes/bootstrap3/templates/search/home.phtml @@ -17,7 +17,7 @@ <?php $this->slot('search-home-hero')->start() ?> <?=$this->context($this)->renderInContext("search/searchbox.phtml", ['ignoreHiddenFilterMemory' => true])?> <?=$this->inlineScript(\Laminas\View\Helper\HeadScript::SCRIPT, '$("#searchForm_lookfor").focus();', 'SET'); ?> - <?=$this->slot('search-home')->end() ?> + <?=$this->slot('search-home-hero')->end() ?> </div> <?=implode('', array_map([$this, 'contentBlock'], $blocks ?? []))?> -- GitLab