From 954bb08762f3ce33340f3b505b653085ac59a1b8 Mon Sep 17 00:00:00 2001 From: Lorenzo Yario Date: Thu, 14 Mar 2024 06:06:28 -0700 Subject: [PATCH] disable by default, like other captchas --- inc/config.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/inc/config.php b/inc/config.php index e6d6f7bc..7a2f603d 100644 --- a/inc/config.php +++ b/inc/config.php @@ -310,10 +310,12 @@ // Enable simple anti-spam measure. Requires the end-user to answer a question before making a post. //Works very well against uncustomized spam. //Answers are case-insensitive. + /* $config['simple_spam'] = array ( 'question' => 'What\'s 2+3?', 'answer' => '5' ); + */ // Enable reCaptcha to make spam even harder. Rarely necessary. $config['recaptcha'] = false;