From f8f6b07e9c5f6febfd2600c453a028b4e8697588 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Fri, 13 Jan 2006 22:40:22 +0000 Subject: [PATCH] Force absolute lookup. Props tanuki. fixes #2237 git-svn-id: https://develop.svn.wordpress.org/trunk@3433 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/functions-post.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/functions-post.php b/wp-includes/functions-post.php index afe6666b1e..e9eea3b987 100644 --- a/wp-includes/functions-post.php +++ b/wp-includes/functions-post.php @@ -679,7 +679,7 @@ function wp_blacklist_check($author, $email, $url, $comment, $user_ip, $user_age function wp_proxy_check($ipnum) { if ( get_option('open_proxy_check') && isset($ipnum) ) { $rev_ip = implode( '.', array_reverse( explode( '.', $ipnum ) ) ); - $lookup = $rev_ip . '.opm.blitzed.org'; + $lookup = $rev_ip . '.opm.blitzed.org.'; if ( $lookup != gethostbyname( $lookup ) ) return true; }