Index: trunk/wp-admin/includes/template.php
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- trunk/wp-admin/includes/template.php	(revision 27090)
+++ trunk/wp-admin/includes/template.php	(revision )
@@ -1367,7 +1367,7 @@
  * Get the post title.
  *
  * The post title is fetched and if it is blank then a default string is
- * returned.
+ * returned along with an excerpt.
  *
  * @since 2.7.0
  * @param mixed $post Post id or object. If not supplied the global $post is used.
@@ -1375,8 +1375,10 @@
  */
 function _draft_or_post_title( $post = 0 ) {
 	$title = get_the_title( $post );
-	if ( empty( $title ) )
-		$title = __( '(no title)' );
+	if ( empty( $title ) ) {
+		$title = __( '(no title) ' ) . get_the_excerpt( $post );
+	}
+
 	return $title;
 }
 
