From 28df28de26053a674b4b717203c09c831b579865 Mon Sep 17 00:00:00 2001 From: Lorenzo Yario Date: Thu, 14 Mar 2024 06:05:43 -0700 Subject: [PATCH] add some more info about this as this is basically questycaptcha --- inc/config.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/inc/config.php b/inc/config.php index 8c1c5673..e6d6f7bc 100644 --- a/inc/config.php +++ b/inc/config.php @@ -307,9 +307,11 @@ 'simple_spam' ); - // Enable simple anti-spam measure. + // 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 is 2 + 3?', + 'question' => 'What\'s 2+3?', 'answer' => '5' );