Index: admin-functions.php
===================================================================
--- admin-functions.php	(revision 1320)
+++ admin-functions.php	(working copy)
@@ -722,9 +722,10 @@
 
 /* Posts */
 
-function bb_admin_list_posts() {
+function bb_admin_list_posts( $type, $id ) {
 	global $bb_posts, $bb_post;
 	if ( $bb_posts ) : foreach ( $bb_posts as $bb_post ) : ?>
+	<<?php echo $type . " id=\"$id\""; ?>>
 	<li<?php alt_class('post'); ?>>
 		<div class="threadauthor">
 			<p><strong><?php post_author_link(); ?></strong><br />
@@ -735,7 +736,8 @@
 			<div class="poststuff">
 				<?php printf(__('Posted: %1$s in <a href="%2$s">%3$s</a>'), bb_get_post_time(), get_topic_link( $bb_post->topic_id ), get_topic_title( $bb_post->topic_id ));?> IP: <?php post_ip_link(); ?> <?php post_edit_link(); ?> <?php post_delete_link();?></div>
 			</div>
-	</li><?php endforeach; endif;
+	</li>
+	</<?php echo $type; ?>><?php endforeach; endif;
 }
 
 /* Recounts */
Index: content-posts.php
===================================================================
--- content-posts.php	(revision 1320)
+++ content-posts.php	(working copy)
@@ -38,9 +38,7 @@
 
 <br class="clear" />
 
-<ol id="the-list">
-<?php bb_admin_list_posts(); ?>
-</ol>
+<?php bb_admin_list_posts( 'ol', 'the-list' ); ?>
 
 <?php echo get_page_number_links( $page, $total ); ?>
 

