Changeset 4530
- Timestamp:
- 11/25/06 06:30:05 (2 years ago)
- Files:
-
- branches/2.0/wp-includes/functions-post.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/2.0/wp-includes/functions-post.php
r4224 r4530 303 303 post_date_gmt = '$post_date_gmt', 304 304 post_content = '$post_content', 305 post_content_filtered = '$post_content_filtered', 305 306 post_title = '$post_title', 306 307 post_excerpt = '$post_excerpt', … … 322 323 $wpdb->query( 323 324 "INSERT INTO $wpdb->posts 324 (post_author, post_date, post_date_gmt, post_content, post_ title, post_excerpt, post_status, comment_status, ping_status, post_password, post_name, to_ping, pinged, post_modified, post_modified_gmt, post_parent, menu_order, post_mime_type, guid)325 (post_author, post_date, post_date_gmt, post_content, post_content_filtered, post_title, post_excerpt, post_status, comment_status, ping_status, post_password, post_name, to_ping, pinged, post_modified, post_modified_gmt, post_parent, menu_order, post_mime_type, guid) 325 326 VALUES 326 ('$post_author', '$post_date', '$post_date_gmt', '$post_content', '$post_ title', '$post_excerpt', '$post_status', '$comment_status', '$ping_status', '$post_password', '$post_name', '$to_ping', '$pinged', '$post_date', '$post_date_gmt', '$post_parent', '$menu_order', '$post_mime_type', '$guid')");327 ('$post_author', '$post_date', '$post_date_gmt', '$post_content', '$post_content_filtered', '$post_title', '$post_excerpt', '$post_status', '$comment_status', '$ping_status', '$post_password', '$post_name', '$to_ping', '$pinged', '$post_date', '$post_date_gmt', '$post_parent', '$menu_order', '$post_mime_type', '$guid')"); 327 328 $post_ID = $wpdb->insert_id; 328 329 }
