mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-28 01:10:51 +01:00
Accidentally disabled spam protection in last commit...
This commit is contained in:
parent
4ef2caecc1
commit
3d5c2ac5f5
15
post.php
15
post.php
@ -189,8 +189,8 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//if(checkSpam())
|
if(checkSpam())
|
||||||
// error($config['error']['spam']);
|
error($config['error']['spam']);
|
||||||
|
|
||||||
if($config['robot_enable'] && $config['robot_mute']) {
|
if($config['robot_enable'] && $config['robot_mute']) {
|
||||||
checkMute();
|
checkMute();
|
||||||
@ -317,10 +317,7 @@
|
|||||||
if(strlen($post['email']) > 40) error(sprintf($config['error']['toolong'], 'email'));
|
if(strlen($post['email']) > 40) error(sprintf($config['error']['toolong'], 'email'));
|
||||||
if(strlen($post['subject']) > 100) error(sprintf($config['error']['toolong'], 'subject'));
|
if(strlen($post['subject']) > 100) error(sprintf($config['error']['toolong'], 'subject'));
|
||||||
if(!$mod && strlen($post['body']) > $config['max_body']) error($config['error']['toolong_body']);
|
if(!$mod && strlen($post['body']) > $config['max_body']) error($config['error']['toolong_body']);
|
||||||
if($config['force_body_op'] && empty($post['body'])) error($config['error']['tooshort_body']);
|
if($config['force_body_op'] && empty($post['body'])) error($config['error']['tooshort_body']);
|
||||||
|
|
||||||
//if(!($config['force_body_op'] && !$OP && $post['has_file']) && strlen($post['body']) < 1) error($config['error']['tooshort_body']);
|
|
||||||
|
|
||||||
if(strlen($post['password']) > 20) error(sprintf($config['error']['toolong'], 'password'));
|
if(strlen($post['password']) > 20) error(sprintf($config['error']['toolong'], 'password'));
|
||||||
|
|
||||||
wordfilters($post['body']);
|
wordfilters($post['body']);
|
||||||
@ -331,9 +328,9 @@
|
|||||||
markup($post['body']);
|
markup($post['body']);
|
||||||
|
|
||||||
// Check for a flood
|
// Check for a flood
|
||||||
//if(!($mod && $mod['type'] >= $config['mod']['flood']) && checkFlood($post)) {
|
if(!($mod && $mod['type'] >= $config['mod']['flood']) && checkFlood($post)) {
|
||||||
// error($config['error']['flood']);
|
error($config['error']['flood']);
|
||||||
//}
|
}
|
||||||
|
|
||||||
// Custom anti-spam filters
|
// Custom anti-spam filters
|
||||||
if(isset($config['flood_filters'])) {
|
if(isset($config['flood_filters'])) {
|
||||||
|
Loading…
Reference in New Issue
Block a user