aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2006-09-28 15:11:57 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2006-09-28 15:11:57 +0000
commit34f09c8deaf15ce68ebf1cbfe7da4f7daca1bbbe (patch)
treef560ed4b1e281640a80cb17815729ef64bba6b42
parent26befa094147b542e48e36867eb41eaf424225f7 (diff)
downloadforums-34f09c8deaf15ce68ebf1cbfe7da4f7daca1bbbe.tar
forums-34f09c8deaf15ce68ebf1cbfe7da4f7daca1bbbe.tar.gz
forums-34f09c8deaf15ce68ebf1cbfe7da4f7daca1bbbe.tar.bz2
forums-34f09c8deaf15ce68ebf1cbfe7da4f7daca1bbbe.tar.xz
forums-34f09c8deaf15ce68ebf1cbfe7da4f7daca1bbbe.zip
err, no, from the php manual actually... the zend function has some security issues.
git-svn-id: file:///svn/phpbb/trunk@6415 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r--phpBB/includes/functions.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php
index b449f5985e..db0e741d91 100644
--- a/phpBB/includes/functions.php
+++ b/phpBB/includes/functions.php
@@ -2707,8 +2707,9 @@ function truncate_string($string, $max_length = 60)
/**
-* Wrapper for php's checkdnsrr function
-* The windows failover is from this page: http://www.zend.com/codex.php?id=370&single=1
+* Wrapper for php's checkdnsrr function.
+*
+* The windows failover is from the php manual
* Please make sure to check the return value for === true and === false, since NULL could
* be returned too.
*