Index: edit.php
===================================================================
--- edit.php	(revision 5486)
+++ edit.php	(working copy)
@@ -15,37 +15,40 @@
 ?>
 <div class="wrap">
 <?php if ($drafts) { ?>
-	<p><strong><?php _e('Your Drafts:') ?></strong>
+	<strong><?php _e('Your Drafts:') ?></strong>
 	<?php
 	$i = 0;
 	foreach ($drafts as $draft) {
-		if (0 != $i)
-			echo ', ';
+		if (0 == $i)
+			echo '<ul>';
 		$draft->post_title = apply_filters('the_title', stripslashes($draft->post_title));
 		if ($draft->post_title == '')
 			$draft->post_title = sprintf(__('Post #%s'), $draft->ID);
-		echo "<a href='post.php?action=edit&amp;post=$draft->ID' title='" . __('Edit this draft') . "'>$draft->post_title</a>";
+		echo "<li><a href='post.php?action=edit&amp;post=$draft->ID' title='" . __('Edit this draft') . "'>$draft->post_title</a></li>";
 		++$i;
 		}
+	if ($i > 0)
+		echo '</ul>';
 	?>
-.</p>
+	
 <?php } ?>
 
 <?php if ($other_drafts) { ?>
-	<p><strong><?php _e('Other&#8217;s Drafts:') ?></strong>
+	<strong><?php _e('Other&#8217;s Drafts:') ?></strong>
 	<?php
 	$i = 0;
 	foreach ($other_drafts as $draft) {
-		if (0 != $i)
-			echo ', ';
+		if (0 == $i)
+			echo '<ul>';
 		$draft->post_title = apply_filters('the_title', stripslashes($draft->post_title));
 		if ($draft->post_title == '')
 			$draft->post_title = sprintf(__('Post #%s'), $draft->ID);
-		echo "<a href='post.php?action=edit&amp;post=$draft->ID' title='" . __('Edit this draft') . "'>$draft->post_title</a>";
+		echo "<li><a href='post.php?action=edit&amp;post=$draft->ID' title='" . __('Edit this draft') . "'>$draft->post_title</a></li>";
 		++$i;
 		}
+	if ($i > 0)
+		echo '</ul>';
 	?>
-	.</p>
 
 <?php } ?>
 
