From 300525e7b5c52bece4eb455e1d5f62f2c721c02f Mon Sep 17 00:00:00 2001 From: Garvin Hicking Date: Fri, 17 Aug 2007 12:28:21 +0000 Subject: [PATCH] Temporarily suspended pingback fetching until it's implemented with a config option to prevent abuse --- include/functions_trackbacks.inc.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/include/functions_trackbacks.inc.php b/include/functions_trackbacks.inc.php index a8265f90..b09d2368 100644 --- a/include/functions_trackbacks.inc.php +++ b/include/functions_trackbacks.inc.php @@ -386,7 +386,8 @@ function add_pingback ($id, $postdata) { $comment['url'] = $sourceURI; $comment['comment'] = ''; $comment['name'] = $path['host']; - fetchPingbackData($comment); + #Temporarily disabled until made configurable + #fetchPingbackData($comment); // if no ID parameter was given, try to get one from targetURI if (!isset($id) || $id==0) { @@ -405,7 +406,8 @@ function add_pingback ($id, $postdata) { $comment['url'] = $remote; $comment['comment'] = ''; $comment['name'] = $path['host']; - fetchPingbackData($comment); + #Temporarily disabled until made configurable + #fetchPingbackData($comment); // if no ID parameter was given, try to get one from targetURI if (!isset($id) || $id==0) {