mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-22 08:11:52 +01:00
make xmlrpc_getpostcategory support multiple, comma-separated categories
git-svn-id: http://svn.automattic.com/wordpress/trunk@1347 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
3c2c7625e9
commit
be22bea57d
@ -629,10 +629,8 @@ function xmlrpc_getposttitle($content) {
|
||||
function xmlrpc_getpostcategory($content) {
|
||||
global $post_default_category;
|
||||
if (preg_match('/<category>(.+?)<\/category>/is', $content, $matchcat)) {
|
||||
$post_category = $matchcat[0];
|
||||
$post_category = preg_replace('/<category>/si', '', $post_category);
|
||||
$post_category = preg_replace('/<\/category>/si', '', $post_category);
|
||||
|
||||
$post_category = trim($matchcat[1], ',');
|
||||
$post_category = explode(',', $post_category);
|
||||
} else {
|
||||
$post_category = $post_default_category;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user