Index: bp-members/bp-members-screens.php
===================================================================
--- bp-members/bp-members-screens.php	(revision 7358)
+++ bp-members/bp-members-screens.php	(working copy)
@@ -369,7 +369,7 @@
 	 * @since BuddyPress (1.7)
 	 */
 	public function directory_content() {
-		bp_buffer_template_part( 'members/index' );
+		return bp_buffer_template_part( 'members/index', null, false );
 	}
 
 	/** Single ****************************************************************/
@@ -429,7 +429,7 @@
 	 * @since BuddyPress (1.7)
 	 */
 	public function single_dummy_content() {
-		bp_buffer_template_part( 'members/single/home' );
+		return bp_buffer_template_part( 'members/single/home', null, false );
 	}
 }
 new BP_Members_Theme_Compat();
@@ -546,9 +546,9 @@
 	 */
 	public function dummy_content() {
 		if ( bp_is_register_page() ) {
-			bp_buffer_template_part( 'members/register' );
+			return bp_buffer_template_part( 'members/register', null, false );
 		} else {
-			bp_buffer_template_part( 'members/activate' );
+			return bp_buffer_template_part( 'members/activate', null, false );
 		}
 	}
 }
Index: bp-forums/bp-forums-screens.php
===================================================================
--- bp-forums/bp-forums-screens.php	(revision 7358)
+++ bp-forums/bp-forums-screens.php	(working copy)
@@ -216,7 +216,7 @@
 	 * @since BuddyPress (1.7)
 	 */
 	public function directory_content() {
-		bp_buffer_template_part( 'forums/index' );
+		return bp_buffer_template_part( 'forums/index', null, false );
 	}
 }
 new BP_Forum_Legacy_Theme_Compat();
Index: bp-groups/bp-groups-screens.php
===================================================================
--- bp-groups/bp-groups-screens.php	(revision 7358)
+++ bp-groups/bp-groups-screens.php	(working copy)
@@ -1048,7 +1048,7 @@
 	 * @since BuddyPress (1.7)
 	 */
 	public function directory_content() {
-		bp_buffer_template_part( 'groups/index' );
+		return bp_buffer_template_part( 'groups/index', null, false );
 	}
 
 	/** Create ****************************************************************/
@@ -1109,7 +1109,7 @@
 	 * @since BuddyPress (1.7)
 	 */
 	public function create_content() {
-		bp_buffer_template_part( 'groups/create' );
+		return bp_buffer_template_part( 'groups/create', null, false );
 	}
 
 	/** Single ****************************************************************/
@@ -1169,7 +1169,7 @@
 	 * @since BuddyPress (1.7)
 	 */
 	public function single_content() {
-		bp_buffer_template_part( 'groups/single/home' );
+		return bp_buffer_template_part( 'groups/single/home', null, false );
 	}
 }
 new BP_Groups_Theme_Compat();
Index: bp-blogs/bp-blogs-screens.php
===================================================================
--- bp-blogs/bp-blogs-screens.php	(revision 7358)
+++ bp-blogs/bp-blogs-screens.php	(working copy)
@@ -156,7 +156,7 @@
 	 * @since BuddyPress (1.7)
 	 */
 	public function directory_content() {
-		bp_buffer_template_part( 'blogs/index' );
+		return bp_buffer_template_part( 'blogs/index', null, false );
 	}
 
 	/** Create ****************************************************************/
@@ -217,7 +217,7 @@
 	 * @since BuddyPress (1.7)
 	 */
 	public function create_content() {
-		bp_buffer_template_part( 'blogs/create' );
+		return bp_buffer_template_part( 'blogs/create', null, false );
 	}
 }
 new BP_Blogs_Theme_Compat();
Index: bp-activity/bp-activity-screens.php
===================================================================
--- bp-activity/bp-activity-screens.php	(revision 7358)
+++ bp-activity/bp-activity-screens.php	(working copy)
@@ -412,7 +412,7 @@
 	 * @since BuddyPress (1.7)
 	 */
 	public function directory_content() {
-		bp_buffer_template_part( 'activity/index' );
+		return bp_buffer_template_part( 'activity/index', null, false );
 	}
 
 	/** Single ****************************************************************/
@@ -465,7 +465,7 @@
 	 * @since BuddyPress (1.7)
 	 */
 	public function single_dummy_content() {
-		bp_buffer_template_part( 'activity/single/home' );
+		return bp_buffer_template_part( 'activity/single/home', null, false );
 	}
 }
 new BP_Activity_Theme_Compat();
