Have wp_set_post_terms return wp_set_object_terms. fixes #14301.

git-svn-id: http://svn.automattic.com/wordpress/trunk@15402 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
nacin 2010-07-13 21:01:48 +00:00
parent 0fc06ad48b
commit 5fb64228d8
1 changed files with 1 additions and 1 deletions

View File

@ -2642,7 +2642,7 @@ function wp_set_post_terms( $post_id = 0, $tags = '', $taxonomy = 'post_tag', $a
$tags = array_unique( $tags );
}
wp_set_object_terms($post_id, $tags, $taxonomy, $append);
return wp_set_object_terms($post_id, $tags, $taxonomy, $append);
}
/**