From b88c876222d288dffd082921ee058fda0852eef0 Mon Sep 17 00:00:00 2001 From: Zankaria Date: Thu, 14 Nov 2024 15:26:53 +0100 Subject: [PATCH] post.php: use additional password check --- post.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/post.php b/post.php index cd89048c..766d30f4 100644 --- a/post.php +++ b/post.php @@ -933,7 +933,7 @@ function handle_post() checkBan($board['uri']); if ($config['op_require_history'] && $post['op'] && !isIPv6()) { - $has_any = has_any_history($_SERVER['REMOTE_ADDR']); + $has_any = has_any_history($_SERVER['REMOTE_ADDR'], $_POST['password']); if (!$has_any) { error($config['error']['opnohistory']); }