Index: src/includes/common/functions.php
--- src/includes/common/functions.php
+++ src/includes/common/functions.php
@@ -516,7 +516,7 @@
 	}

 	// Tally the tallies
-	$counts = array_filter( array_map( 'absint', compact(
+	$counts = array_map( 'absint', compact(
 		'user_count',
 		'forum_count',
 		'topic_count',
@@ -525,15 +525,16 @@
 		'reply_count_hidden',
 		'topic_tag_count',
 		'empty_topic_tag_count'
-	) ) );
+	) );

 	// Define return value
 	$statistics = array();

 	// Loop through and store the integer and i18n formatted counts.
 	foreach ( $counts as $key => $count ) {
-		$statistics[ $key ]         = bbp_number_format_i18n( $count );
-		$statistics[ "{$key}_int" ] = $count;
+		$not_negative               = bbp_number_not_negative( $count );
+		$statistics[ $key ]         = bbp_number_format_i18n( $not_negative );
+		$statistics[ "{$key}_int" ] = $not_negative;
 	}

 	// Add the hidden (topic/reply) count title attribute strings because we
Index: src/templates/default/bbpress/content-statistics.php
--- src/templates/default/bbpress/content-statistics.php
+++ src/templates/default/bbpress/content-statistics.php
@@ -13,7 +13,7 @@
 // Get the statistics
 $stats = bbp_get_statistics(); ?>

-<dl role="main">
+<dl role="main" class="bbp-stats">

 	<?php do_action( 'bbp_before_statistics' ); ?>

