Changeset 4952 for trunk/includes/search/template-tags.php
- Timestamp:
- 05/27/2013 07:39:27 AM (13 years ago)
- File:
-
- 1 edited
-
trunk/includes/search/template-tags.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/includes/search/template-tags.php
r4928 r4952 229 229 // No search terms specified 230 230 if ( empty( $search_terms ) ) { 231 $title = __( 'Search', 'bbpress' );231 $title = esc_html__( 'Search', 'bbpress' ); 232 232 233 233 // Include search terms in title 234 234 } else { 235 $title = sprintf( __( "Search Results for '%s'", 'bbpress' ), esc_attr( $search_terms ) );235 $title = sprintf( esc_html__( "Search Results for '%s'", 'bbpress' ), esc_attr( $search_terms ) ); 236 236 } 237 237 … … 414 414 415 415 // Filter and return 416 return apply_filters( 'bbp_get_search_pagination_count', $retstr);416 return apply_filters( 'bbp_get_search_pagination_count', esc_html( $retstr ) ); 417 417 } 418 418
Note: See TracChangeset
for help on using the changeset viewer.