1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-23 23:20:57 +01:00

add some more info about this as this is basically questycaptcha

This commit is contained in:
Lorenzo Yario 2024-03-14 06:05:43 -07:00 committed by GitHub
parent 33534b5856
commit 28df28de26
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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'
);