Changeset 36302 for trunk/src/wp-admin/edit-tags.php
- Timestamp:
- 01/14/2016 08:05:06 PM (10 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-admin/edit-tags.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/edit-tags.php
r35875 r36302 312 312 <div class="wrap nosubsub"> 313 313 <h1><?php echo esc_html( $title ); 314 if ( !empty($_REQUEST['s']) ) 315 printf( '<span class="subtitle">' . __('Search results for “%s”') . '</span>', esc_html( wp_unslash($_REQUEST['s']) ) ); ?> 314 if ( isset( $_REQUEST['s'] ) && strlen( $_REQUEST['s'] ) ) { 315 /* translators: %s: search keywords */ 316 printf( '<span class="subtitle">' . __( 'Search results for “%s”' ) . '</span>', esc_html( wp_unslash( $_REQUEST['s'] ) ) ); 317 } 318 ?> 316 319 </h1> 317 320
Note: See TracChangeset
for help on using the changeset viewer.