From e4fc191e0dba2f18dd046451f1a95e4fb9e76a88 Mon Sep 17 00:00:00 2001 From: Meik Sievertsen Date: Fri, 29 Sep 2006 12:06:06 +0000 Subject: [PATCH] of course $host instead of $domain git-svn-id: file:///svn/phpbb/trunk@6418 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/includes/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index db0e741d91..fb0258996c 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -2746,7 +2746,7 @@ function phpbb_checkdnsrr($host, $type = '') } else if (function_exists('checkdnsrr')) { - return (checkdnsrr($domain, $type)) ? true : false; + return (checkdnsrr($host, $type)) ? true : false; } return NULL;