From 185bfc54f63361825cda4b558767eeaacf0e83ff Mon Sep 17 00:00:00 2001 From: garvinhicking 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 a8265f9..b09d236 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) { -- 2.39.5