Index: bbp-includes/bbp-extend-buddypress.php
===================================================================
--- bbp-includes/bbp-extend-buddypress.php	(revision 3797)
+++ bbp-includes/bbp-extend-buddypress.php	(working copy)
@@ -1253,33 +1253,8 @@
 					'post_status'  => $status
 				) );
 
-				// Create the initial topic
-				$topic_id = bbp_insert_topic(
-					array(
-						'post_parent'  => $forum_id,
-						'post_title'   => __( 'Hello World!', 'bbpress' ),
-						'post_content' => __( 'I am the first topic in your group forum. You can keep me, edit me, trash me, or delete me.', 'bbpress' )
-					),
-					array( 'forum_id'  => $forum_id )
-				);
-
-				// Create the initial reply
-				$reply_id = bbp_insert_reply(
-					array(
-						'post_parent'  => $topic_id,
-						'post_title'   => __( 'Re: Hello World!', 'bbpress' ),
-						'post_content' => __( 'Oh, and this is what a reply looks like.', 'bbpress' )
-					),
-					array(
-						'forum_id'     => $forum_id,
-						'topic_id'     => $topic_id
-					)
-				);
-
 				// Add the ID's to group meta
 				groups_update_groupmeta( bp_get_new_group_id(), 'forum_id',       $forum_id );
-				groups_update_groupmeta( bp_get_new_group_id(), 'first_topic_id', $topic_id );
-				groups_update_groupmeta( bp_get_new_group_id(), 'first_reply_id', $reply_id );
 
 				break;
 			case false :
