Changeset 8169
- Timestamp:
- 03/27/2014 01:34:56 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-friends/bp-friends-notifications.php
r7619 r8169 165 165 // Return either an HTML link or an array, depending on the requested format 166 166 if ( 'string' == $format ) { 167 $return = apply_filters( $filter, '<a href="' . esc_url( $link ) . '">' . esc_html( $text ) . '</a>', (int) $total_items );167 $return = apply_filters( $filter, '<a href="' . esc_url( $link ) . '">' . esc_html( $text ) . '</a>', (int) $total_items, $item_id ); 168 168 } else { 169 169 $return = apply_filters( $filter, array( 170 170 'link' => $link, 171 171 'text' => $text 172 ), (int) $total_items );172 ), (int) $total_items, $item_id ); 173 173 } 174 174
Note: See TracChangeset
for help on using the changeset viewer.