Ignore self pings

This commit is contained in:
Stephen Paul Weber 2015-10-25 17:30:51 +00:00
parent b95b318052
commit f09a82268f
1 changed files with 7 additions and 0 deletions

View File

@ -5,6 +5,13 @@ function linkback_lenient_target_match($body, $target) {
}
function linkback_get_source($source, $target) {
// Check if we are pinging ourselves and ignore
$localprefix = common_config('site', 'server') . '/' . common_config('site', 'path');
if(linkback_lenient_target_match($source, $localprefix)) {
common_debug('Ignoring self ping from ' . $source . ' to ' . $target);
return NULL;
}
$request = HTTPClient::start();
try {