diff --git src/wp-admin/edit.php src/wp-admin/edit.php
index b1ad058..1e47a6c 100644
|
|
if ( current_user_can( $post_type_object->cap->create_posts ) ) { |
352 | 352 | |
353 | 353 | if ( isset( $_REQUEST['s'] ) && strlen( $_REQUEST['s'] ) ) { |
354 | 354 | /* translators: %s: search keywords */ |
355 | | printf( ' <span class="subtitle">' . __( 'Search results for “%s”' ) . '</span>', get_search_query() ); |
| 355 | printf( |
| 356 | ' <span class="subtitle">' . __( 'Search results for “%s”' ) . '</span>', |
| 357 | esc_html( wp_html_excerpt( get_search_query( false ), 50 , '…' ) ) |
| 358 | ); |
356 | 359 | } |
357 | 360 | ?> |
358 | 361 | |