Ticket #6056: 6056.patch
| File 6056.patch, 763 bytes (added by , 11 years ago) |
|---|
-
src/bp-blogs/bp-blogs-widgets.php
52 52 if ( ! empty( $instance['link_title'] ) ) { 53 53 $title = '<a href="' . trailingslashit( bp_get_root_domain() ) . trailingslashit( bp_get_blogs_root_slug() ) . '">' . esc_html( $title ) . '</a>'; 54 54 } 55 56 /** 57 * Filters the Blogs Recent Posts widget title. 58 * 59 * @since BuddyPress (2.2.0) 60 * 61 * @param string $title The widget title. 62 */ 63 $title = apply_filters( 'widget_title', $instance['title'] ); 55 64 56 65 echo $args['before_widget']; 57 66 echo $args['before_title'] . $title . $args['after_title'];