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
|
|
class Hooks { |
1096 | 1096 | public function bbp_raw_title_array( $title ) { |
1097 | 1097 | if ( bbp_is_single_forum() || bbp_is_single_topic() || bbp_is_single_view() ) { |
1098 | 1098 | $title['format'] = '%s'; |
| 1099 | |
| 1100 | $instance = Plugin::get_instance(); |
| 1101 | if( wporg_support_is_single_review() ) { |
| 1102 | $title['text'] .= sprintf( ' - [%s] %s', |
| 1103 | $instance->plugins->plugin->post_title, |
| 1104 | __( 'Review', 'wporg-forums' ) |
| 1105 | ); |
| 1106 | } |
1099 | 1107 | } |
1100 | 1108 | |
1101 | 1109 | return $title; |