Make WordPress Core


Ignore:
Timestamp:
12/04/2008 09:20:52 AM (16 years ago)
Author:
azaozz
Message:

Add search string to H2s, fixes #8373

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/upload.php

    r9967 r10034  
    165165<div class="wrap">
    166166<?php screen_icon(); ?>
    167 <h2><?php echo wp_specialchars( $title ); ?></h2>
     167<?php $h2_search = isset($_GET['s']) && $_GET['s'] ? ' ' . sprintf(__('matching &#8220;%s&#8221;'), wp_specialchars( get_search_query() ) ) : ''; ?>
     168<h2><?php echo wp_specialchars( $title ) . $h2_search; ?></h2>
    168169
    169170<?php
Note: See TracChangeset for help on using the changeset viewer.