Index: bp-themes/bp-sn-framework/functions.php
===================================================================
--- bp-themes/bp-sn-framework/functions.php	(revision 1786)
+++ bp-themes/bp-sn-framework/functions.php	(working copy)
@@ -68,4 +68,16 @@
 }
 add_action( 'wp', 'bp_dtheme_show_home_blog', 2 );
 
+	function bp_dtheme_filter_home_query( $query ) {
+		global $bp;
+
+		if ( $bp->current_component != BP_HOME_BLOG_SLUG )
+			return $query;
+
+		// nullify the initial query
+		remove_filter( 'posts_request', 'bp_dtheme_filter_home_query', 0 );
+		return;
+	}
+	add_filter( 'posts_request', 'bp_dtheme_filter_home_query', 0 );
+
 ?>
\ No newline at end of file
