Changeset 34085 for trunk/src/wp-includes/post-functions.php
- Timestamp:
- 09/12/2015 06:53:56 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/post-functions.php
r34082 r34085 3043 3043 // These variables are needed by compact() later. 3044 3044 $post_content_filtered = $postarr['post_content_filtered']; 3045 $post_author = empty( $postarr['post_author'] ) ? $user_id : $postarr['post_author'];3045 $post_author = isset( $postarr['post_author'] ) ? $postarr['post_author'] : $user_id; 3046 3046 $ping_status = empty( $postarr['ping_status'] ) ? get_default_comment_status( $post_type, 'pingback' ) : $postarr['ping_status']; 3047 3047 $to_ping = isset( $postarr['to_ping'] ) ? sanitize_trackback_urls( $postarr['to_ping'] ) : '';
Note: See TracChangeset
for help on using the changeset viewer.