From 5a046b3ed29ce1eff199483efaea55fbdc4124a2 Mon Sep 17 00:00:00 2001 From: Chris Hallberg <crhallberg@gmail.com> Date: Tue, 4 Mar 2014 14:46:12 -0500 Subject: [PATCH] Missing parameter for Combined search filter permenence. --- themes/bootstrap/templates/search/searchbox.phtml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/themes/bootstrap/templates/search/searchbox.phtml b/themes/bootstrap/templates/search/searchbox.phtml index 5d2b81bff6f..a3ecfdb79eb 100644 --- a/themes/bootstrap/templates/search/searchbox.phtml +++ b/themes/bootstrap/templates/search/searchbox.phtml @@ -106,6 +106,10 @@ </div> <? endif; ?> <? + /* Show hidden field for active search class when in combined handler mode. */ + if ($this->searchbox()->combinedHandlersActive()) { + echo '<input type="hidden" name="activeSearchClassId" value="' . $this->escapeHtml($this->searchClassId) . '" />'; + } /* Load hidden limit preference from Session */ if (!empty($lastLimit)) { echo '<input type="hidden" name="limit" value="' . $this->escapeHtml($lastLimit) . '" />'; -- GitLab