1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-10 19:56:52 +02:00

of course $host instead of $domain

git-svn-id: file:///svn/phpbb/trunk@6418 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Meik Sievertsen
2006-09-29 12:06:06 +00:00
parent 3766d9128d
commit e4fc191e0d

View File

@ -2746,7 +2746,7 @@ function phpbb_checkdnsrr($host, $type = '')
} }
else if (function_exists('checkdnsrr')) else if (function_exists('checkdnsrr'))
{ {
return (checkdnsrr($domain, $type)) ? true : false; return (checkdnsrr($host, $type)) ? true : false;
} }
return NULL; return NULL;