From 6c0ae692ee6bc935203808c7c51ed8643ae1bdd6 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Tue, 29 Nov 2005 02:47:31 +0000 Subject: [PATCH] Regenerate page rewrite rules after creating the first page during install. git-svn-id: https://develop.svn.wordpress.org/trunk@3232 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/install.php | 1 + 1 file changed, 1 insertion(+) diff --git a/wp-admin/install.php b/wp-admin/install.php index c8d3ed9604..56a169022b 100644 --- a/wp-admin/install.php +++ b/wp-admin/install.php @@ -171,6 +171,7 @@ $wpdb->query("INSERT INTO $wpdb->comments (comment_post_ID, comment_author, comm // 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')"); +generate_page_rewrite_rules(); // Set up admin user $random_password = substr(md5(uniqid(microtime())), 0, 6);