I'm getting the error " Warning: array_merge() [function.array-merge]: Argument #2 is not an array in /home/lankatr/public_html/wp/wp-includes/post.php on line 1856"
Line 1856 :
// Merge old and new fields with new fields overwriting old ones.
$postarr = array_merge($post, $postarr);
$postarr['post_category'] = $post_cats;
if ( $clear_date ) {
$postarr['post_date'] = current_time('mysql');
$postarr['post_date_gmt'] = '';
}
if ($postarr['post_type'] == 'attachment')
return wp_insert_attachment($postarr);
return wp_insert_post($postarr);
}


2Likes
LinkBack URL
About LinkBacks

Reply With Quote

