From ae66f7f3c800c9e87296933df8ea45503fe4c38c Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Fri, 2 Nov 2007 00:58:15 +0000 Subject: [PATCH] Fix comment typo git-svn-id: https://develop.svn.wordpress.org/trunk@6306 602fd350-edb4-49c9-b593-d223f7449a82 --- 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 ); }