From 1abc6d0e91dc5c3b32b37c4e1663ae002ee95a4b Mon Sep 17 00:00:00 2001 From: ryan Date: Tue, 18 Nov 2008 00:53:30 +0000 Subject: [PATCH] Check type. Props josephscott. fixes #8267 git-svn-id: http://svn.automattic.com/wordpress/trunk@9745 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- xmlrpc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xmlrpc.php b/xmlrpc.php index 706fd73af..4650422e4 100644 --- a/xmlrpc.php +++ b/xmlrpc.php @@ -1906,7 +1906,7 @@ class wp_xmlrpc_server extends IXR_Server { $actual_post = wp_get_single_post($post_ID,ARRAY_A); - if (!$actual_post) { + if (!$actual_post || $actual_post['post_type'] != 'post') { return new IXR_Error(404, __('Sorry, no such post.')); } @@ -1961,7 +1961,7 @@ class wp_xmlrpc_server extends IXR_Server { $actual_post = wp_get_single_post($post_ID,ARRAY_A); - if (!$actual_post) { + if (!$actual_post || $actual_post['post_type'] != 'post') { return new IXR_Error(404, __('Sorry, no such post.')); }