Changeset 28854 for trunk/src/wp-includes/class-wp-xmlrpc-server.php
- Timestamp:
- 06/26/2014 05:42:17 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-xmlrpc-server.php
r28849 r28854 1103 1103 return $this->error; 1104 1104 1105 // convert the date field back to IXR form 1106 if ( isset( $content_struct['post_date'] ) ) { 1107 $content_struct['post_date'] = $this->_convert_date( $content_struct['post_date'] ); 1108 } 1109 1110 // ignore the existing GMT date if it is empty or a non-GMT date was supplied in $content_struct, 1111 // since _insert_post will ignore the non-GMT date if the GMT date is set 1112 if ( isset( $content_struct['post_date_gmt'] ) ) { 1113 if ( $content_struct['post_date_gmt'] == '0000-00-00 00:00:00' || isset( $content_struct['post_date'] ) ) { 1114 unset( $content_struct['post_date_gmt'] ); 1115 } else { 1116 $content_struct['post_date_gmt'] = $this->_convert_date( $content_struct['post_date_gmt'] ); 1117 } 1118 } 1119 1105 1120 /** This action is documented in wp-includes/class-wp-xmlrpc-server.php */ 1106 1121 do_action( 'xmlrpc_call', 'wp.newPost' );
Note: See TracChangeset
for help on using the changeset viewer.