Handle array of mt_tb_ping_urls. Props bafonso. fixes #3721

git-svn-id: https://develop.svn.wordpress.org/trunk@4905 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2007-02-22 01:34:06 +00:00
parent 308cb8f107
commit ca42a4bbdb

View File

@ -990,6 +990,8 @@ class wp_xmlrpc_server extends IXR_Server {
}
$to_ping = $content_struct['mt_tb_ping_urls'];
if ( is_array($to_ping) )
$to_ping = implode(' ', $to_ping);
// Do some timestamp voodoo
$dateCreatedd = $content_struct['dateCreated'];
@ -1152,6 +1154,8 @@ class wp_xmlrpc_server extends IXR_Server {
}
$to_ping = $content_struct['mt_tb_ping_urls'];
if ( is_array($to_ping) )
$to_ping = implode(' ', $to_ping);
$comment_status = (empty($content_struct['mt_allow_comments'])) ?
get_option('default_comment_status')