Changeset 10035 for trunk/wp-admin/link-manager.php
- Timestamp:
- 12/04/2008 12:01:02 PM (17 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/link-manager.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/link-manager.php
r10034 r10035 72 72 <div class="wrap nosubsub"> 73 73 <?php screen_icon(); ?> 74 <?php $h2_search = isset($_GET['s']) && $_GET['s'] ? ' ' . sprintf(__('matching “%s”'), wp_specialchars( stripslashes($_GET['s']) ) ) : ''; ?> 75 <h2><?php echo wp_specialchars( $title ) . $h2_search; ?></h2> 74 <h2><?php echo wp_specialchars( $title ); 75 if ( isset($_GET['s']) && $_GET['s'] ) 76 printf( '<span class="subtitle">' . __('Search results for “%s”') . '</span>', wp_specialchars( stripslashes($_GET['s']) ) ); ?> 77 </h2> 76 78 77 79 <?php
Note: See TracChangeset
for help on using the changeset viewer.