diff --git wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-hooks.php wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-hooks.php
index 673983b2e..977b97c35 100644
--- wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-hooks.php
+++ wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-hooks.php
@@ -1096,6 +1096,14 @@ class Hooks {
 	public function bbp_raw_title_array( $title ) {
 		if ( bbp_is_single_forum() || bbp_is_single_topic() || bbp_is_single_view() ) {
 			$title['format'] = '%s';
+
+			$instance = Plugin::get_instance();
+			if( wporg_support_is_single_review() ) {
+				$title['text'] .= sprintf( ' &#45; [%s] %s',
+					$instance->plugins->plugin->post_title,
+					__( 'Review', 'wporg-forums' )
+				);
+			}
 		}
 
 		return $title;
