Changeset 9738
- Timestamp:
- 04/11/2015 02:33:08 AM (10 years ago)
- Location:
- trunk/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-blogs/bp-blogs-widgets.php
r9709 r9738 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']; -
trunk/src/bp-core/bp-core-widgets.php
r9709 r9738 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']; -
trunk/src/bp-messages/bp-messages-widgets.php
r9709 r9738 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;
Note: See TracChangeset
for help on using the changeset viewer.