| 1 |
<?php |
<?php |
| 2 |
// $Id: technorati.module,v 1.11 2008/07/27 16:28:34 kbahey Exp $ |
// $Id: technorati.module,v 1.11.2.1 2008/07/27 23:54:22 kbahey Exp $ |
| 3 |
|
|
| 4 |
/* |
/* |
| 5 |
* @file |
* @file |
| 344 |
function technorati_ping($name = '', $url = '') { |
function technorati_ping($name = '', $url = '') { |
| 345 |
$result = xmlrpc('http://rpc.technorati.com/rpc/ping', 'weblogUpdates.ping', $name, $url); |
$result = xmlrpc('http://rpc.technorati.com/rpc/ping', 'weblogUpdates.ping', $name, $url); |
| 346 |
if ($result) { |
if ($result) { |
| 347 |
watchdog("directory ping", 'Successfully notified technorati.com site.', WATCHDOG_NOTICE); |
watchdog('directory ping', 'Successfully notified technorati.com site.', array(), WATCHDOG_NOTICE); |
| 348 |
} |
} |
| 349 |
else { |
else { |
| 350 |
watchdog('directory ping', 'Failed to notify technorati.com site.', WATCHDOG_WARNING); |
watchdog('directory ping', 'Failed to notify technorati.com site.', array(), WATCHDOG_WARNING); |
| 351 |
} |
} |
| 352 |
} |
} |
| 353 |
|
|