Index: bbp-common-template.php
--- bbp-common-template.php Base (BASE)
+++ bbp-common-template.php Locally Modified (Based On LOCAL)
@@ -480,6 +480,7 @@
  * @since bbPress (r2789)
  *
  * @uses WP_Query Checks if WP_Query::bbp_is_view is true
+ * @uses bbp_is_query_name() To check if a single view query is going on
  * @return bool Is it a view page?
  */
 function bbp_is_single_view() {
@@ -488,6 +489,9 @@
 	if ( !empty( $wp_query->bbp_is_view ) && ( true == $wp_query->bbp_is_view ) )
 		return true;

+	if ( bbp_is_query_name( 'bbp_single_view' ) )
+		return true;
+
 	return false;
 }

