From f5b3276e6225b71bae2b5853c58771c526ca5106 Mon Sep 17 00:00:00 2001 From: Shish Date: Mon, 30 Aug 2021 19:38:25 +0100 Subject: [PATCH] add a missing # in the danbooru original theme, fixes #834 --- themes/danbooru/index.theme.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/danbooru/index.theme.php b/themes/danbooru/index.theme.php index 65855620..5c0f33e5 100644 --- a/themes/danbooru/index.theme.php +++ b/themes/danbooru/index.theme.php @@ -26,7 +26,7 @@ class CustomIndexTheme extends IndexTheme $page->add_block(new Block("Search", $nav, "left", 0)); if (count($images) > 0) { if ($query) { - $page->add_block(new Block("Posts", $this->build_table($images, "search=$query"), "main", 10)); + $page->add_block(new Block("Posts", $this->build_table($images, "#search=$query"), "main", 10)); $this->display_paginator($page, "post/list/$query", null, $this->page_number, $this->total_pages); } else { $page->add_block(new Block("Posts", $this->build_table($images, null), "main", 10));