--- C:/Users/ADMINI~1/AppData/Local/Temp/post-template.php-revBASE.svn000.tmp.php	Thu Dec 24 16:33:17 2009
+++ C:/inetpub/wordpress/wp-includes/post-template.php	Thu Dec 24 16:32:44 2009
@@ -311,7 +311,12 @@
 		return $classes;
 
 	$classes[] = 'post-' . $post->ID;
-	$classes[] = $post->post_type;
+	
+	if ($post->post_type == 'post') {
+		$classes[] = 'post';
+	} else {
+		$classes[] = 'post-' . $post->post_type;
+	}
 
 	// sticky for Sticky Posts
 	if ( is_sticky($post->ID) && is_home())
