From 3fe44653f27fe824c29018aadf64c0b12b677ded Mon Sep 17 00:00:00 2001 From: Zankaria Date: Sun, 6 Oct 2024 13:08:29 +0200 Subject: [PATCH] post.php: fix invocation of native captcha --- post.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/post.php b/post.php index bfd41639..3658ed52 100644 --- a/post.php +++ b/post.php @@ -519,10 +519,10 @@ if (isset($_POST['delete'])) { $query = new NativeCaptchaQuery( $context->get(HttpDriver::class), $config['domain'], - $config['captcha']['provider_check'] + $config['captcha']['provider_check'], + $config['captcha']['extra'] ); $success = $query->verify( - $config['captcha']['extra'], $_POST['captcha_text'], $_POST['captcha_cookie'] );