Index: bp-activity/bp-activity-screens.php
===================================================================
--- bp-activity/bp-activity-screens.php
+++ bp-activity/bp-activity-screens.php
@@ -408,7 +408,7 @@ class BP_Activity_Theme_Compat {
 	 * @since BuddyPress (1.7)
 	 */
 	public function single_dummy_content() {
-		bp_buffer_template_part( 'members/single/activity/permalink' );
+		bp_buffer_template_part( 'activity/single/home' );
 	}
 }
 new BP_Activity_Theme_Compat();
Index: bp-templates/bp-legacy/buddypress/activity/single/home.php
new file mode 100644
===================================================================
--- /dev/null
+++ bp-templates/bp-legacy/buddypress/activity/single/home.php
@@ -0,0 +1,17 @@
+<div id="buddypress">
+	<?php do_action( 'template_notices' ); ?>
+
+	<div class="activity no-ajax" role="main">
+		<?php if ( bp_has_activities( 'display_comments=threaded&show_hidden=true&include=' . bp_current_action() ) ) : ?>
+
+			<ul id="activity-stream" class="activity-list item-list">
+			<?php while ( bp_activities() ) : bp_the_activity(); ?>
+
+				<?php bp_get_template_part( 'activity/entry' ); ?>
+
+			<?php endwhile; ?>
+			</ul>
+
+		<?php endif; ?>
+	</div>
+</div>
\ No newline at end of file
Index: bp-templates/bp-legacy/buddypress/members/single/activity/permalink.php
deleted file mode 100644
===================================================================
--- bp-templates/bp-legacy/buddypress/members/single/activity/permalink.php
+++ /dev/null
@@ -1,17 +0,0 @@
-<div id="buddypress">
-	<?php do_action( 'template_notices' ); ?>
-
-	<div class="activity no-ajax" role="main">
-		<?php if ( bp_has_activities( 'display_comments=threaded&show_hidden=true&include=' . bp_current_action() ) ) : ?>
-
-			<ul id="activity-stream" class="activity-list item-list">
-			<?php while ( bp_activities() ) : bp_the_activity(); ?>
-
-				<?php bp_get_template_part( 'activity/entry' ); ?>
-
-			<?php endwhile; ?>
-			</ul>
-
-		<?php endif; ?>
-	</div>
-</div>
\ No newline at end of file
