1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-25 16:00:22 +01:00

allow mods to bypass DNSBL checks

This commit is contained in:
Bui 2014-09-25 09:48:46 +09:00
parent eb6a07c19a
commit b3532ba546

View File

@ -200,8 +200,6 @@ if (isset($_POST['delete'])) {
if ($config['referer_match'] !== false &&
(!isset($_SERVER['HTTP_REFERER']) || !preg_match($config['referer_match'], rawurldecode($_SERVER['HTTP_REFERER']))))
error($config['error']['referer']);
checkDNSBL();
// Check if banned
checkBan($board['uri']);
@ -243,6 +241,9 @@ if (isset($_POST['delete'])) {
$post['antispam_hash'] = checkSpam(array($board['uri'], isset($post['thread']) ? $post['thread'] : ($config['try_smarter'] && isset($_POST['page']) ? 0 - (int)$_POST['page'] : null)));
if ($post['antispam_hash'] === true)
error($config['error']['spam']);
// Check DNSBL
checkDNSBL();
}
if ($config['robot_enable'] && $config['robot_mute']) {