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:
azaozz 2009-08-24 19:40:56 +00:00
parent 15aee919f7
commit 193aca2e76
1 changed files with 1 additions and 1 deletions

View File

@ -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']);
}