Changeset 16508
- Timestamp:
- 11/20/2010 03:50:56 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/class-wp-xmlrpc-server.php
r16484 r16508 1771 1771 'dateCreated' => new IXR_Date(mysql2date('Ymd\TH:i:s', $post_data['post_date'], false)), 1772 1772 'content' => $content, 1773 'postid' => $post_data['ID']1773 'postid' => (string) $post_data['ID'] 1774 1774 ); 1775 1775 … … 1825 1825 'dateCreated' => new IXR_Date($post_date), 1826 1826 'content' => $content, 1827 'postid' => $entry['ID'],1827 'postid' => (string) $entry['ID'], 1828 1828 ); 1829 1829 … … 2808 2808 'dateCreated' => new IXR_Date($post_date), 2809 2809 'userid' => $entry['post_author'], 2810 'postid' => $entry['ID'],2810 'postid' => (string) $entry['ID'], 2811 2811 'description' => $post['main'], 2812 2812 'title' => $entry['post_title'], … … 3017 3017 'dateCreated' => new IXR_Date($post_date), 3018 3018 'userid' => $entry['post_author'], 3019 'postid' => $entry['ID'],3019 'postid' => (string) $entry['ID'], 3020 3020 'title' => $entry['post_title'], 3021 3021 'date_created_gmt' => new IXR_Date($post_date_gmt)
Note: See TracChangeset
for help on using the changeset viewer.