diff --git a/core/util.php b/core/util.php
index 2055ff84..a98e613d 100644
--- a/core/util.php
+++ b/core/util.php
@@ -741,7 +741,9 @@ function make_form(string $target, string $method = "POST", bool $multipart = fa
{
global $user;
if ($method == "GET") {
- die("make_form: GET method is not supported");
+ $link = html_escape($target);
+ $target = make_link($target);
+ $extra_inputs = "";
} else {
$extra_inputs = $user->get_auth_html();
}
diff --git a/ext/auto_tagger/theme.php b/ext/auto_tagger/theme.php
index 138a085d..abe99281 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 14ad0ec8..b5bf49cf 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"))."
+
'.make_form(make_link("comment/bulk_delete"), 'POST')."