From ab376f4dffa00fa1dca7f43466d40f7b50f10c44 Mon Sep 17 00:00:00 2001 From: Shish Date: Sun, 31 Dec 2023 19:54:14 +0000 Subject: [PATCH] [r34] remove redundant overrides --- themes/rule34v2/tag_edit.theme.php | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/themes/rule34v2/tag_edit.theme.php b/themes/rule34v2/tag_edit.theme.php index 88725ce8..858973ae 100644 --- a/themes/rule34v2/tag_edit.theme.php +++ b/themes/rule34v2/tag_edit.theme.php @@ -10,21 +10,6 @@ use function MicroHTML\{TR, TH, TD, emptyHTML, rawHTML, joinHTML, DIV, INPUT, A} class CustomTagEditTheme extends TagEditTheme { - public function display_mass_editor() - { - global $page; - $html = " - ".make_form(make_link("tag_edit/replace"))." - - - - -
Search
Replace
- - "; - $page->add_block(new Block("Mass Tag Edit", $html)); - } - public function get_tag_editor_html(Image $image): HTMLElement { global $user; @@ -34,7 +19,7 @@ class CustomTagEditTheme extends TagEditTheme "type" => "text", "name" => "tag_edit__tags", "value" => $image->get_tag_list(), - "autocomplete" => "off" + "class" => "autocomplete_tags" ]) ); }