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

git-svn-id: http://svn.automattic.com/wordpress/trunk@5898 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2007-08-17 23:32:49 +00:00
parent 8d75bcef27
commit 4f183b4fe7
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'];