Index: wp-admin/import/rss.php
===================================================================
--- wp-admin/import/rss.php	(revision 351)
+++ wp-admin/import/rss.php	(working copy)
@@ -84,6 +84,10 @@
 				// This is for feeds that put content in description
 				preg_match('|<description>(.*?)</description>|is', $post, $post_content);
 				$post_content = $wpdb->escape($this->unhtmlentities(trim($post_content[1])));
+			} else {
+				// This is for feeds that put content in description
+				preg_match('|<description>(.*?)</description>|is', $post, $post_excerpt);
+				$post_excerpt = $wpdb->escape($this->unhtmlentities(trim($post_excerpt[1])));			  
 			}
 
 			// Clean up content
@@ -93,7 +97,7 @@
 
 			$post_author = 1;
 			$post_status = 'publish';
-			$this->posts[$index] = compact('post_author', 'post_date', 'post_date_gmt', 'post_content', 'post_title', 'post_status', 'guid', 'categories');
+			$this->posts[$index] = compact('post_author', 'post_date', 'post_date_gmt', 'post_content', 'post_excerpt', 'post_title', 'post_status', 'guid', 'categories');
 			$index++;
 		}
 	}
