aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2006-09-29 12:06:06 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2006-09-29 12:06:06 +0000
commite4fc191e0dba2f18dd046451f1a95e4fb9e76a88 (patch)
tree12f38114f376447aa9d38ebea05cdd43e7039d5d /phpBB/includes
parent3766d9128d83bb394af5ed3d3d4b9a5f7202cdcb (diff)
downloadforums-e4fc191e0dba2f18dd046451f1a95e4fb9e76a88.tar
forums-e4fc191e0dba2f18dd046451f1a95e4fb9e76a88.tar.gz
forums-e4fc191e0dba2f18dd046451f1a95e4fb9e76a88.tar.bz2
forums-e4fc191e0dba2f18dd046451f1a95e4fb9e76a88.tar.xz
forums-e4fc191e0dba2f18dd046451f1a95e4fb9e76a88.zip
of course $host instead of $domain
git-svn-id: file:///svn/phpbb/trunk@6418 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes')
-rw-r--r--phpBB/includes/functions.php2
1 files changed, 1 insertions, 1 deletions
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;