From 443d13a3bc9936c4226231f0305ff2e195869761 Mon Sep 17 00:00:00 2001 From: Savetheinternet Date: Sun, 5 Jun 2011 16:32:53 +1000 Subject: [PATCH] bug/typo fix for dnsbl_exceptions --- inc/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/functions.php b/inc/functions.php index 189bcd06..30c609a5 100644 --- a/inc/functions.php +++ b/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']);