Changeset 54904
- Timestamp:
- 11/29/2022 11:44:27 PM (22 months ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/js/_enqueues/wp/updates.js
r53844 r54904 2655 2655 /* translators: %s: Search query. */ 2656 2656 __( 'Search results for: %s' ), 2657 '<strong>' + _.escape( d ata.s) + '</strong>'2657 '<strong>' + _.escape( decodeURIComponent( data.s ) ) + '</strong>' 2658 2658 ) ), 2659 2659 $oldSubTitle = $( '.wrap .subtitle' ); -
trunk/src/wp-admin/includes/class-wp-plugins-list-table.php
r54378 r54904 404 404 405 405 if ( ! empty( $_REQUEST['s'] ) ) { 406 $s = esc_html( wp_unslash( $_REQUEST['s']) );406 $s = esc_html( urldecode( wp_unslash( $_REQUEST['s'] ) ) ); 407 407 408 408 /* translators: %s: Plugin search term. */
Note: See TracChangeset
for help on using the changeset viewer.