Browse Source

Small DNSBL fix

pull/40/head
Michael Save 12 years ago
parent
commit
fb5fc04599
  1. 2
      inc/functions.php

2
inc/functions.php

@ -1328,7 +1328,7 @@
if($blacklist[1]($ip))
error(sprintf($config['error']['dnsbl'], $blacklist_name));
} else {
if($ip == $blacklist[1] || $ip == '127.0.0.' . $blacklist_name)
if($ip == $blacklist[1] || $ip == '127.0.0.' . $blacklist[1])
error(sprintf($config['error']['dnsbl'], $blacklist_name));
}
}

Loading…
Cancel
Save