Make WordPress Core


Ignore:
Timestamp:
10/23/2020 03:59:34 PM (3 years ago)
Author:
helen
Message:

Administration: Unify search results message on list tables.

This wraps the search string in a <strong> tag, which makes easier to parse visually especially when your search string also contains double quotes.

Props Mista-Flo, mapk, sergeybiryukov.
Fixes #37353.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/network/users.php

    r49108 r49284  
    280280    if ( strlen( $usersearch ) ) {
    281281        /* translators: %s: Search query. */
    282         printf( '<span class="subtitle">' . __( 'Search results for &#8220;%s&#8221;' ) . '</span>', esc_html( $usersearch ) );
     282        printf( '<span class="subtitle">' . __( 'Search results for: %s' ) . '</span>', '<strong>' . esc_html( $usersearch ) . '</strong>' );
    283283    }
    284284    ?>
Note: See TracChangeset for help on using the changeset viewer.