--- index.php.orig	2008-01-31 14:19:59.000000000 +0200
+++ index.php	2008-01-31 14:19:46.000000000 +0200
@@ -60,6 +60,25 @@
 <?php endif; ?>
 
 <?php
+if ( $drafts = $wpdb->get_results("SELECT ID, post_title FROM $wpdb->posts WHERE post_type = 'post' AND post_status = 'draft' ORDER BY post_date ASC LIMIT 5") ) :
+?>
+<div>
+<h3><?php printf( __( 'Drafts <a href="%s" title="More&#8230;">&raquo;</a>'), 'edit.php?post_status=draft' ); ?></h3>
+<ul>
+<?php
+foreach ($drafts as $post) {
+	if ($post->post_title == '')
+		$post->post_title = sprintf(__('Post #%s'), $post->ID);
+	echo "<li><a href='post.php?action=edit&amp;post=$post->ID'>";
+	the_title();
+	echo '</a></li>';
+}
+?>
+</ul>
+</div>
+<?php endif; ?>
+
+<?php
 if ( $recentposts = $wpdb->get_results("SELECT ID, post_title FROM $wpdb->posts WHERE post_type = 'post' AND " . get_private_posts_cap_sql('post') . " AND post_date_gmt < '$today' ORDER BY post_date DESC LIMIT 5") ) :
 ?>
 <div>
@@ -78,6 +97,7 @@
 </div>
 <?php endif; ?>
 
+       	
 <?php
 if ( $scheduled = $wpdb->get_results("SELECT ID, post_title, post_date_gmt FROM $wpdb->posts WHERE post_type = 'post' AND post_status = 'future' ORDER BY post_date ASC") ) :
 ?>
