Make sure fields without defaults are specified when inserting. fixes #1953
git-svn-id: http://svn.automattic.com/wordpress/trunk@3285 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
0ace9024cd
commit
157aecdf6e
|
@ -284,7 +284,10 @@ function wp_insert_link($linkdata) {
|
||||||
|
|
||||||
if ( empty($link_owner) )
|
if ( empty($link_owner) )
|
||||||
$link_owner = $current_user->id;
|
$link_owner = $current_user->id;
|
||||||
|
|
||||||
|
if ( empty($link_notes) )
|
||||||
|
$link_notes = '';
|
||||||
|
|
||||||
if ( $update ) {
|
if ( $update ) {
|
||||||
$wpdb->query("UPDATE $wpdb->links SET link_url='$link_url',
|
$wpdb->query("UPDATE $wpdb->links SET link_url='$link_url',
|
||||||
link_name='$link_name', link_image='$link_image',
|
link_name='$link_name', link_image='$link_image',
|
||||||
|
|
|
@ -147,21 +147,21 @@ update_option('admin_email', $admin_email);
|
||||||
|
|
||||||
// Now drop in some default links
|
// Now drop in some default links
|
||||||
$wpdb->query("INSERT INTO $wpdb->linkcategories (cat_id, cat_name) VALUES (1, '".$wpdb->escape(__('Blogroll'))."')");
|
$wpdb->query("INSERT INTO $wpdb->linkcategories (cat_id, cat_name) VALUES (1, '".$wpdb->escape(__('Blogroll'))."')");
|
||||||
$wpdb->query("INSERT INTO $wpdb->links (link_url, link_name, link_category, link_rss) VALUES ('http://blogs.linux.ie/xeer/', 'Donncha', 1, 'http://blogs.linux.ie/xeer/feed/');");
|
$wpdb->query("INSERT INTO $wpdb->links (link_url, link_name, link_category, link_rss, link_notes) VALUES ('http://blogs.linux.ie/xeer/', 'Donncha', 1, 'http://blogs.linux.ie/xeer/feed/', '');");
|
||||||
$wpdb->query("INSERT INTO $wpdb->links (link_url, link_name, link_category, link_rss) VALUES ('http://zengun.org/weblog/', 'Michel', 1, 'http://zengun.org/weblog/feed/');");
|
$wpdb->query("INSERT INTO $wpdb->links (link_url, link_name, link_category, link_rss, link_notes) VALUES ('http://zengun.org/weblog/', 'Michel', 1, 'http://zengun.org/weblog/feed/', '');");
|
||||||
$wpdb->query("INSERT INTO $wpdb->links (link_url, link_name, link_category, link_rss) VALUES ('http://boren.nu/', 'Ryan', 1, 'http://boren.nu/feed/');");
|
$wpdb->query("INSERT INTO $wpdb->links (link_url, link_name, link_category, link_rss, link_notes) VALUES ('http://boren.nu/', 'Ryan', 1, 'http://boren.nu/feed/', '');");
|
||||||
$wpdb->query("INSERT INTO $wpdb->links (link_url, link_name, link_category, link_rss) VALUES ('http://photomatt.net/', 'Matt', 1, 'http://xml.photomatt.net/feed/');");
|
$wpdb->query("INSERT INTO $wpdb->links (link_url, link_name, link_category, link_rss, link_notes) VALUES ('http://photomatt.net/', 'Matt', 1, 'http://xml.photomatt.net/feed/', '');");
|
||||||
$wpdb->query("INSERT INTO $wpdb->links (link_url, link_name, link_category, link_rss) VALUES ('http://zed1.com/journalized/', 'Mike', 1, 'http://zed1.com/journalized/feed/');");
|
$wpdb->query("INSERT INTO $wpdb->links (link_url, link_name, link_category, link_rss, link_notes) VALUES ('http://zed1.com/journalized/', 'Mike', 1, 'http://zed1.com/journalized/feed/', '');");
|
||||||
$wpdb->query("INSERT INTO $wpdb->links (link_url, link_name, link_category, link_rss) VALUES ('http://www.alexking.org/', 'Alex', 1, 'http://www.alexking.org/blog/wp-rss2.php');");
|
$wpdb->query("INSERT INTO $wpdb->links (link_url, link_name, link_category, link_rss, link_notes) VALUES ('http://www.alexking.org/', 'Alex', 1, 'http://www.alexking.org/blog/wp-rss2.php', '');");
|
||||||
$wpdb->query("INSERT INTO $wpdb->links (link_url, link_name, link_category, link_rss) VALUES ('http://dougal.gunters.org/', 'Dougal', 1, 'http://dougal.gunters.org/feed/');");
|
$wpdb->query("INSERT INTO $wpdb->links (link_url, link_name, link_category, link_rss, link_notes) VALUES ('http://dougal.gunters.org/', 'Dougal', 1, 'http://dougal.gunters.org/feed/', '');");
|
||||||
|
|
||||||
// Default category
|
// Default category
|
||||||
$wpdb->query("INSERT INTO $wpdb->categories (cat_ID, cat_name, category_nicename, category_count) VALUES ('0', '".$wpdb->escape(__('Uncategorized'))."', '".sanitize_title(__('Uncategorized'))."', '1')");
|
$wpdb->query("INSERT INTO $wpdb->categories (cat_ID, cat_name, category_nicename, category_count, category_description) VALUES ('0', '".$wpdb->escape(__('Uncategorized'))."', '".sanitize_title(__('Uncategorized'))."', '1', '')");
|
||||||
|
|
||||||
// First post
|
// First post
|
||||||
$now = date('Y-m-d H:i:s');
|
$now = date('Y-m-d H:i:s');
|
||||||
$now_gmt = gmdate('Y-m-d H:i:s');
|
$now_gmt = gmdate('Y-m-d H:i:s');
|
||||||
$wpdb->query("INSERT INTO $wpdb->posts (post_author, post_date, post_date_gmt, post_content, post_title, post_category, post_name, post_modified, post_modified_gmt, comment_count) VALUES ('1', '$now', '$now_gmt', '".$wpdb->escape(__('Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!'))."', '".$wpdb->escape(__('Hello world!'))."', '0', '".$wpdb->escape(__('hello-world'))."', '$now', '$now_gmt', '1')");
|
$wpdb->query("INSERT INTO $wpdb->posts (post_author, post_date, post_date_gmt, post_content, post_excerpt, post_title, post_category, post_name, post_modified, post_modified_gmt, comment_count, to_ping, pinged, post_content_filtered) VALUES ('1', '$now', '$now_gmt', '".$wpdb->escape(__('Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!'))."', '', '".$wpdb->escape(__('Hello world!'))."', '0', '".$wpdb->escape(__('hello-world'))."', '$now', '$now_gmt', '1', '', '', '')");
|
||||||
|
|
||||||
$wpdb->query( "INSERT INTO $wpdb->post2cat (`rel_id`, `post_id`, `category_id`) VALUES (1, 1, 1)" );
|
$wpdb->query( "INSERT INTO $wpdb->post2cat (`rel_id`, `post_id`, `category_id`) VALUES (1, 1, 1)" );
|
||||||
|
|
||||||
|
@ -170,7 +170,7 @@ $wpdb->query("INSERT INTO $wpdb->comments (comment_post_ID, comment_author, comm
|
||||||
|
|
||||||
// First Page
|
// First Page
|
||||||
|
|
||||||
$wpdb->query("INSERT INTO $wpdb->posts (post_author, post_date, post_date_gmt, post_content, post_title, post_category, post_name, post_modified, post_modified_gmt, post_status) VALUES ('1', '$now', '$now_gmt', '".$wpdb->escape(__('This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages like this one or sub-pages as you like and manage all of your content inside of WordPress.'))."', '".$wpdb->escape(__('About'))."', '0', '".$wpdb->escape(__('about'))."', '$now', '$now_gmt', 'static')");
|
$wpdb->query("INSERT INTO $wpdb->posts (post_author, post_date, post_date_gmt, post_content, post_excerpt, post_title, post_category, post_name, post_modified, post_modified_gmt, post_status, to_ping, pinged, post_content_filtered) VALUES ('1', '$now', '$now_gmt', '".$wpdb->escape(__('This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages like this one or sub-pages as you like and manage all of your content inside of WordPress.'))."', '', '".$wpdb->escape(__('About'))."', '0', '".$wpdb->escape(__('about'))."', '$now', '$now_gmt', 'static', '', '', '')");
|
||||||
generate_page_rewrite_rules();
|
generate_page_rewrite_rules();
|
||||||
|
|
||||||
// Set up admin user
|
// Set up admin user
|
||||||
|
|
|
@ -84,7 +84,10 @@ function wp_insert_post($postarr = array()) {
|
||||||
$to_ping = preg_replace('|\s+|', "\n", $to_ping);
|
$to_ping = preg_replace('|\s+|', "\n", $to_ping);
|
||||||
else
|
else
|
||||||
$to_ping = '';
|
$to_ping = '';
|
||||||
|
|
||||||
|
if ( ! isset($pinged) )
|
||||||
|
$pinged = '';
|
||||||
|
|
||||||
if ( isset($post_parent) )
|
if ( isset($post_parent) )
|
||||||
$post_parent = (int) $post_parent;
|
$post_parent = (int) $post_parent;
|
||||||
else
|
else
|
||||||
|
@ -123,6 +126,7 @@ function wp_insert_post($postarr = array()) {
|
||||||
post_date = '$post_date',
|
post_date = '$post_date',
|
||||||
post_date_gmt = '$post_date_gmt',
|
post_date_gmt = '$post_date_gmt',
|
||||||
post_content = '$post_content',
|
post_content = '$post_content',
|
||||||
|
post_content_filtered = '$post_content_filtered',
|
||||||
post_title = '$post_title',
|
post_title = '$post_title',
|
||||||
post_excerpt = '$post_excerpt',
|
post_excerpt = '$post_excerpt',
|
||||||
post_status = '$post_status',
|
post_status = '$post_status',
|
||||||
|
@ -131,6 +135,7 @@ function wp_insert_post($postarr = array()) {
|
||||||
post_password = '$post_password',
|
post_password = '$post_password',
|
||||||
post_name = '$post_name',
|
post_name = '$post_name',
|
||||||
to_ping = '$to_ping',
|
to_ping = '$to_ping',
|
||||||
|
pinged = '$pinged',
|
||||||
post_modified = '$post_date',
|
post_modified = '$post_date',
|
||||||
post_modified_gmt = '$post_date_gmt',
|
post_modified_gmt = '$post_date_gmt',
|
||||||
post_parent = '$post_parent',
|
post_parent = '$post_parent',
|
||||||
|
@ -139,9 +144,9 @@ function wp_insert_post($postarr = array()) {
|
||||||
} else {
|
} else {
|
||||||
$wpdb->query(
|
$wpdb->query(
|
||||||
"INSERT INTO $wpdb->posts
|
"INSERT INTO $wpdb->posts
|
||||||
(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, post_modified, post_modified_gmt, post_parent, menu_order, post_mime_type)
|
(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)
|
||||||
VALUES
|
VALUES
|
||||||
('$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', '$post_date', '$post_date_gmt', '$post_parent', '$menu_order', '$post_mime_type')");
|
('$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')");
|
||||||
$post_ID = $wpdb->insert_id;
|
$post_ID = $wpdb->insert_id;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue