Browse Source

bug/typo fix for dnsbl_exceptions

pull/40/head
Savetheinternet 13 years ago
parent
commit
443d13a3bc
  1. 2
      inc/functions.php

2
inc/functions.php

@ -1139,7 +1139,7 @@
if(!isset($_SERVER['REMOTE_ADDR']))
return; // Fix your web server configuration
if(in_array($_SERVER['REMOTE_ADDR'], $dnsbl_exceptions))
if(in_array($_SERVER['REMOTE_ADDR'], $config['dnsbl_exceptions']))
return;
$ip = ReverseIPOctets($_SERVER['REMOTE_ADDR']);

Loading…
Cancel
Save