1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2025-01-19 09:27:24 +01:00

Re-enable this filter

This commit is contained in:
8chan 2014-10-05 17:06:57 +00:00
parent f42173b260
commit 7bfbd10d69

View File

@ -331,7 +331,7 @@
);
// Minimum time between posts by the same IP address with the same text.
/*$config['filters'][] = array(
$config['filters'][] = array(
'condition' => array(
'flood-match' => array('ip', 'body'), // Match IP address and post body
'flood-time' => &$config['flood_time_ip'],
@ -339,7 +339,7 @@
),
'action' => 'reject',
'message' => &$config['error']['flood']
);*/
);
// Minimum time between posts with the same text. (Same content, but not always the same IP address.)
/*$config['filters'][] = array(