Changeset 10034
- Timestamp:
- 12/04/2008 09:20:52 AM (17 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/categories.php
r9969 r10034 132 132 <div class="wrap nosubsub"> 133 133 <?php screen_icon(); ?> 134 <h2><?php echo wp_specialchars( $title ); ?></h2> 134 <?php $h2_search = isset($_GET['s']) && $_GET['s'] ? ' ' . sprintf(__('matching “%s”'), wp_specialchars( stripslashes($_GET['s']) ) ) : ''; ?> 135 <h2><?php echo wp_specialchars( $title ) . $h2_search; ?></h2> 135 136 136 137 <?php -
trunk/wp-admin/edit-comments.php
r9914 r10034 87 87 <div class="wrap"> 88 88 <?php screen_icon(); ?> 89 <h2><?php echo wp_specialchars( $title ); ?></h2> 89 <?php $h2_search = isset($_GET['s']) && $_GET['s'] ? ' ' . sprintf(__('matching “%s”'), wp_specialchars( stripslashes($_GET['s']) ) ) : ''; ?> 90 <h2><?php echo wp_specialchars( $title ) . $h2_search; ?></h2> 90 91 91 92 <?php -
trunk/wp-admin/edit-link-categories.php
r10020 r10034 62 62 <div class="wrap nosubsub"> 63 63 <?php screen_icon(); ?> 64 <h2><?php echo wp_specialchars( $title ); ?></h2> 64 <?php $h2_search = isset($_GET['s']) && $_GET['s'] ? ' ' . sprintf(__('matching “%s”'), wp_specialchars( stripslashes($_GET['s']) ) ) : ''; ?> 65 <h2><?php echo wp_specialchars( $title ) . $h2_search; ?></h2> 65 66 66 67 <?php if ( isset($_GET['message']) && ( $msg = (int) $_GET['message'] ) ) : ?> -
trunk/wp-admin/edit-pages.php
r9999 r10034 105 105 <div class="wrap"> 106 106 <?php screen_icon(); ?> 107 <h2><?php echo wp_specialchars( $title ); ?></h2> 107 <?php $h2_search = isset($_GET['s']) && $_GET['s'] ? ' ' . sprintf(__('matching “%s”'), wp_specialchars( get_search_query() ) ) : ''; ?> 108 <h2><?php echo wp_specialchars( $title ) . $h2_search; ?></h2> 108 109 109 110 <?php if ( isset($_GET['locked']) || isset($_GET['skipped']) || isset($_GET['updated']) || isset($_GET['deleted']) ) { ?> -
trunk/wp-admin/edit-tags.php
r9969 r10034 131 131 <div class="wrap nosubsub"> 132 132 <?php screen_icon(); ?> 133 <h2><?php echo wp_specialchars( $title ); ?></h2> 133 <?php $h2_search = isset($_GET['s']) && $_GET['s'] ? ' ' . sprintf(__('matching “%s”'), wp_specialchars( stripslashes($_GET['s']) ) ) : ''; ?> 134 <h2><?php echo wp_specialchars( $title ) . $h2_search; ?></h2> 134 135 135 136 <?php if ( isset($_GET['message']) && ( $msg = (int) $_GET['message'] ) ) : ?> -
trunk/wp-admin/edit.php
r10004 r10034 97 97 <div class="wrap"> 98 98 <?php screen_icon(); ?> 99 <h2><?php echo wp_specialchars( $title ); ?></h2> 99 <?php $h2_search = isset($_GET['s']) && $_GET['s'] ? ' ' . sprintf(__('matching “%s”'), wp_specialchars( get_search_query() ) ) : ''; ?> 100 <h2><?php echo wp_specialchars( $title ) . $h2_search; ?></h2> 100 101 101 102 <?php -
trunk/wp-admin/link-manager.php
r10012 r10034 72 72 <div class="wrap nosubsub"> 73 73 <?php screen_icon(); ?> 74 <h2><?php echo wp_specialchars( $title ); ?></h2> 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> 75 76 76 77 <?php -
trunk/wp-admin/upload.php
r9967 r10034 165 165 <div class="wrap"> 166 166 <?php screen_icon(); ?> 167 <h2><?php echo wp_specialchars( $title ); ?></h2> 167 <?php $h2_search = isset($_GET['s']) && $_GET['s'] ? ' ' . sprintf(__('matching “%s”'), wp_specialchars( get_search_query() ) ) : ''; ?> 168 <h2><?php echo wp_specialchars( $title ) . $h2_search; ?></h2> 168 169 169 170 <?php -
trunk/wp-admin/users.php
r9912 r10034 240 240 <div class="wrap"> 241 241 <?php screen_icon(); ?> 242 <h2><?php echo wp_specialchars( $title ); ?></h2> 242 <?php $h2_search = isset($_GET['s']) && $_GET['s'] ? ' ' . sprintf(__('matching “%s”'), wp_specialchars( get_search_query() ) ) : ''; ?> 243 <h2><?php echo wp_specialchars( $title ) . $h2_search; ?></h2> 243 244 244 245 <div class="filter">
Note: See TracChangeset
for help on using the changeset viewer.