Fix notice in wp-admin/includes/post.php, props harrym, fixes #10678 for 2.8
git-svn-id: http://svn.automattic.com/wordpress/branches/2.8@11872 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
15aee919f7
commit
193aca2e76
|
@ -246,7 +246,7 @@ function bulk_edit_posts( $post_data = null ) {
|
|||
|
||||
if ( isset($post_data['post_category']) ) {
|
||||
if ( is_array($post_data['post_category']) && ! empty($post_data['post_category']) )
|
||||
$new_cats = array_map( absint, $post_data['post_category'] );
|
||||
$new_cats = array_map( 'absint', $post_data['post_category'] );
|
||||
else
|
||||
unset($post_data['post_category']);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue