Ticket #32585: post.diff
File post.diff, 735 bytes (added by , 10 years ago) |
---|
-
post.php
3313 3313 3314 3314 // These variables are needed by compact() later. 3315 3315 $post_content_filtered = $postarr['post_content_filtered']; 3316 $post_author = empty( $postarr['post_author'] ) ? $user_id : $postarr['post_author'];3316 $post_author = isset( $postarr['post_author'] ) ? $postarr['post_author'] : $user_id; 3317 3317 $ping_status = empty( $postarr['ping_status'] ) ? get_option( 'default_ping_status' ) : $postarr['ping_status']; 3318 3318 $to_ping = isset( $postarr['to_ping'] ) ? sanitize_trackback_urls( $postarr['to_ping'] ) : ''; 3319 3319 $pinged = isset( $postarr['pinged'] ) ? $postarr['pinged'] : '';