From 52934a6cee52a99812616b557a772687b28a3e62 Mon Sep 17 00:00:00 2001 From: ryan Date: Fri, 2 Nov 2007 00:58:15 +0000 Subject: [PATCH] Fix comment typo git-svn-id: http://svn.automattic.com/wordpress/trunk@6306 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/post.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/post.php b/wp-includes/post.php index b8839de090..18256d4834 100644 --- a/wp-includes/post.php +++ b/wp-includes/post.php @@ -713,7 +713,7 @@ function wp_insert_post($postarr = array()) { $wpdb->insert( $wpdb->posts, $data ); $post_ID = (int) $wpdb->insert_id; - /* use the newly genearted $post_ID */ + // use the newly generated $post_ID $where = array( 'ID' => $post_ID ); }