diff --git a/core/util.php b/core/util.php
index 67a3403c..2fe46641 100644
--- a/core/util.php
+++ b/core/util.php
@@ -772,9 +772,7 @@ function make_form(string $target, string $method = "POST", bool $multipart = fa
{
global $user;
if ($method == "GET") {
- $link = html_escape($target);
- $target = make_link($target);
- $extra_inputs = "";
+ die("make_form: GET method is not supported");
} else {
$extra_inputs = $user->get_auth_html();
}
diff --git a/ext/auto_tagger/theme.php b/ext/auto_tagger/theme.php
index abe99281..138a085d 100644
--- a/ext/auto_tagger/theme.php
+++ b/ext/auto_tagger/theme.php
@@ -25,7 +25,7 @@ class AutoTaggerTheme extends Themelet
";
$bulk_html = "
- ".make_form(make_link("auto_tag/import"), 'post', true)."
+ ".make_form(make_link("auto_tag/import"), 'POST', true)."
diff --git a/ext/comment/theme.php b/ext/comment/theme.php
index b5bf49cf..14ad0ec8 100644
--- a/ext/comment/theme.php
+++ b/ext/comment/theme.php
@@ -101,7 +101,7 @@ class CommentListTheme extends Themelet
$html = '
Delete comments by IP.
-
'.make_form(make_link("comment/bulk_delete"), 'POST')."
+
'.make_form(make_link("comment/bulk_delete"))."