Skip to content
Snippets Groups Projects
Commit 5a046b3e authored by Chris Hallberg's avatar Chris Hallberg
Browse files

Missing parameter for Combined search filter permenence.

parent 7925d9a9
No related merge requests found
...@@ -106,6 +106,10 @@ ...@@ -106,6 +106,10 @@
</div> </div>
<? endif; ?> <? 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 */ /* Load hidden limit preference from Session */
if (!empty($lastLimit)) { if (!empty($lastLimit)) {
echo '<input type="hidden" name="limit" value="' . $this->escapeHtml($lastLimit) . '" />'; echo '<input type="hidden" name="limit" value="' . $this->escapeHtml($lastLimit) . '" />';
......
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