Index: /trunk/bb-includes/bozo.php
===================================================================
--- /trunk/bb-includes/bozo.php	(revision 909)
+++ /trunk/bb-includes/bozo.php	(revision 910)
@@ -61,5 +61,5 @@
 	if ( bb_current_user_is_bozo( $topic->topic_id ? $topic->topic_id : $topic_id ) ) {
 		add_filter( 'get_thread_where', 'bb_bozo_posts' );
-		add_filter( 'get_thread_post_ids', 'bb_bozo_posts' );
+		add_filter( 'get_thread_post_ids_where', 'bb_bozo_posts' );
 	}
 }
@@ -111,5 +111,5 @@
 			_e("Counting bozo topics for each user...\n");
 			foreach ( $users as $user ) :
-				$topics_replied = (int) $bbdb->get_var("SELECT COUNT(DISTINCT topic_id) FROM $bbdb->posts WHERE post_status > 1 AND poster_id = '$user'");
+				$topics_replied = (int) $bbdb->get_var("SELECT COUNT(DISTINCT topic_id) FROM $bbdb->posts WHERE post_status = 0 AND poster_id = '$user'");
 				bb_update_usermeta( $user, $bb_table_prefix. 'topics_replied', $topics_replied );
 				$bozo_keys = (array) $bbdb->get_col("SELECT topic_id, COUNT(post_id) FROM $bbdb->posts WHERE post_status > 1 AND poster_id = '$user' GROUP BY topic_id");
