Changeset 36302 for trunk/src/wp-admin/upload.php
- Timestamp:
- 01/14/2016 08:05:06 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/upload.php
r34891 r36302 221 221 <a href="media-new.php" class="page-title-action"><?php echo esc_html_x('Add New', 'file'); ?></a><?php 222 222 } 223 if ( ! empty( $_REQUEST['s'] ) ) 224 printf( '<span class="subtitle">' . __('Search results for “%s”') . '</span>', get_search_query() ); ?> 223 if ( isset( $_REQUEST['s'] ) && strlen( $_REQUEST['s'] ) ) { 224 /* translators: %s: search keywords */ 225 printf( '<span class="subtitle">' . __( 'Search results for “%s”' ) . '</span>', get_search_query() ); 226 } 227 ?> 225 228 </h1> 226 229
Note: See TracChangeset
for help on using the changeset viewer.