mt_allow_pings fix. Props Joseph Scott and Allan Odgaard. fixes #4770 for 2.3

git-svn-id: https://develop.svn.wordpress.org/trunk@5898 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2007-08-17 23:32:49 +00:00
parent 23efaffd94
commit 635b23fc1c
1 changed files with 2 additions and 14 deletions

View File

@ -1023,7 +1023,7 @@ class wp_xmlrpc_server extends IXR_Server {
if(isset($content_struct["mt_allow_pings"])) {
if(!is_numeric($content_struct["mt_allow_pings"])) {
switch($content["mt_allow_pings"]) {
switch($content_struct['mt_allow_pings']) {
case "closed":
$ping_status = "closed";
break;
@ -1233,7 +1233,7 @@ class wp_xmlrpc_server extends IXR_Server {
if(isset($content_struct["mt_allow_pings"])) {
if(!is_numeric($content_struct["mt_allow_pings"])) {
switch($content["mt_allow_pings"]) {
switch($content_struct["mt_allow_pings"]) {
case "closed":
$ping_status = "closed";
break;
@ -1260,18 +1260,6 @@ class wp_xmlrpc_server extends IXR_Server {
}
}
// Only set ping_status if it was provided.
if(isset($content_struct["mt_allow_pings"])) {
switch((int) $content_struct["mt_allow_pings"]) {
case 0:
$ping_status = "closed";
break;
case 1:
$ping_status = "open";
break;
}
}
$post_title = $content_struct['title'];
$post_content = apply_filters( 'content_save_pre', $content_struct['description'] );
$catnames = $content_struct['categories'];