diff --git src/bp-blogs/bp-blogs-widgets.php src/bp-blogs/bp-blogs-widgets.php
index cae2508..5cb224f 100644
|
|
|
class BP_Blogs_Recent_Posts_Widget extends WP_Widget { |
| 66 | 66 | * @param array $instance The settings for the particular instance of the widget. |
| 67 | 67 | * @param string $id_base Root ID for all widgets of this type. |
| 68 | 68 | */ |
| 69 | | $title = apply_filters( 'widget_title', $instance['title'], $instance, $this->id_base ); |
| | 69 | $title = apply_filters( 'widget_title', $title, $instance, $this->id_base ); |
| 70 | 70 | |
| 71 | 71 | echo $args['before_widget']; |
| 72 | 72 | echo $args['before_title'] . $title . $args['after_title']; |
diff --git src/bp-core/bp-core-widgets.php src/bp-core/bp-core-widgets.php
index 05c88ba..48a29e2 100644
|
|
|
class BP_Core_Login_Widget extends WP_Widget { |
| 61 | 61 | * @param array $instance The settings for the particular instance of the widget. |
| 62 | 62 | * @param string $id_base Root ID for all widgets of this type. |
| 63 | 63 | */ |
| 64 | | $title = apply_filters( 'widget_title', $instance['title'], $instance, $this->id_base ); |
| | 64 | $title = apply_filters( 'widget_title', $title, $instance, $this->id_base ); |
| 65 | 65 | |
| 66 | 66 | echo $args['before_widget']; |
| 67 | 67 | |
diff --git src/bp-members/bp-members-widgets.php src/bp-members/bp-members-widgets.php
index c3f8993..cb21eb9 100644
|
|
|
class BP_Core_Members_Widget extends WP_Widget { |
| 59 | 59 | if ( !$instance['member_default'] ) |
| 60 | 60 | $instance['member_default'] = 'active'; |
| 61 | 61 | |
| | 62 | if ( empty( $instance['title'] ) ) { |
| | 63 | $instance['title'] = ''; |
| | 64 | } |
| | 65 | |
| 62 | 66 | /** |
| 63 | 67 | * Filters the title of the Members widget. |
| 64 | 68 | * |
| … |
… |
class BP_Core_Whos_Online_Widget extends WP_Widget { |
| 231 | 235 | |
| 232 | 236 | extract( $args ); |
| 233 | 237 | |
| | 238 | if ( empty( $instance['title'] ) ) { |
| | 239 | $instance['title'] = ''; |
| | 240 | } |
| | 241 | |
| 234 | 242 | /** |
| 235 | 243 | * Filters the title of the Who's Online widget. |
| 236 | 244 | * |
| … |
… |
class BP_Core_Recently_Active_Widget extends WP_Widget { |
| 347 | 355 | |
| 348 | 356 | extract( $args ); |
| 349 | 357 | |
| | 358 | if ( empty( $instance['title'] ) ) { |
| | 359 | $instance['title'] = ''; |
| | 360 | } |
| | 361 | |
| 350 | 362 | /** |
| 351 | 363 | * Filters the title of the Recently Active widget. |
| 352 | 364 | * |
diff --git src/bp-messages/bp-messages-widgets.php src/bp-messages/bp-messages-widgets.php
index 606efa2..7c8ddd8 100644
|
|
|
class BP_Messages_Sitewide_Notices_Widget extends WP_Widget { |
| 73 | 73 | * @param array $instance The settings for the particular instance of the widget. |
| 74 | 74 | * @param string $id_base Root ID for all widgets of this type. |
| 75 | 75 | */ |
| 76 | | $title = apply_filters( 'widget_title', $instance['title'], $instance, $this->id_base ); |
| | 76 | $title = apply_filters( 'widget_title', $title, $instance, $this->id_base ); |
| 77 | 77 | |
| 78 | 78 | echo $before_widget; |
| 79 | 79 | echo $before_title . $title . $after_title; ?> |