From 4fe1aac48e09fa4ff58648fb6c6a12e804f34c96 Mon Sep 17 00:00:00 2001 From: fuzzykitten Date: Wed, 4 Jun 2025 17:45:43 -0400 Subject: [PATCH] put searchform in results --- srv/index.php | 1 + 1 file changed, 1 insertion(+) diff --git a/srv/index.php b/srv/index.php index d6ae4ea..f430a14 100644 --- a/srv/index.php +++ b/srv/index.php @@ -830,6 +830,7 @@ switch($mode) { $results = fulltext_search($db, $settings, $text); $matches = count($results); print_top_header($db, "search for \"$text\": $matches results"); + show_search_form($db, $settings, $css); print_results($db, $results, $settings, $css); print_footer_searches('search', $matches, $css, $settings); quit($db, "");