Changeset 9709 for trunk/src/bp-core/bp-core-widgets.php
- Timestamp:
- 04/06/2015 10:03:24 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-core/bp-core-widgets.php
r9612 r9709 56 56 * 57 57 * @since BuddyPress (1.9.0) 58 * @since BuddyPress (2.3.0) Added 'instance' and 'id_base' to arguments passed to filter. 58 59 * 59 * @param string $title The widget title. 60 * @param string $title The widget title. 61 * @param array $instance The settings for the particular instance of the widget. 62 * @param string $id_base Root ID for all widgets of this type. 60 63 */ 61 $title = apply_filters( 'widget_title', $ title );64 $title = apply_filters( 'widget_title', $instance['title'], $instance, $this->id_base ); 62 65 63 66 echo $args['before_widget'];
Note: See TracChangeset
for help on using the changeset viewer.