1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-24 07:30:10 +01:00

Prettier simple-antispam

This commit is contained in:
Zankaria 2024-03-14 14:40:55 +01:00
parent 3ac86a074a
commit d5109426d9
2 changed files with 8 additions and 10 deletions

View File

@ -308,14 +308,12 @@
); );
// Enable simple anti-spam measure. Requires the end-user to answer a question before making a post. // Enable simple anti-spam measure. Requires the end-user to answer a question before making a post.
//Works very well against uncustomized spam. // Works very well against uncustomized spam. Answers are case-insensitive.
//Answers are case-insensitive. // $config['simple_spam'] = array (
/* // 'question' => 'What\'s 2+3?',
$config['simple_spam'] = array ( // 'answer' => '5'
'question' => 'What\'s 2+3?', //);
'answer' => '5' $config['simple_spam'] = false;
);
*/
// Enable reCaptcha to make spam even harder. Rarely necessary. // Enable reCaptcha to make spam even harder. Rarely necessary.
$config['recaptcha'] = false; $config['recaptcha'] = false;

View File

@ -558,7 +558,7 @@ if (isset($_POST['delete'])) {
if (!$dropped_post) { if (!$dropped_post) {
if (isset($config['simple_spam']) && $config['simple_spam'] && $post['op']) { if ($config['simple_spam'] && $post['op']) {
if (!isset($_POST['simple_spam']) || strtolower($config['simple_spam']['answer']) != strtolower($_POST['simple_spam'])) { if (!isset($_POST['simple_spam']) || strtolower($config['simple_spam']['answer']) != strtolower($_POST['simple_spam'])) {
error($config['error']['simple_spam']); error($config['error']['simple_spam']);
} }