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/edit-comments.php

    r9914 r10034  
    8787<div class="wrap">
    8888<?php screen_icon(); ?>
    89 <h2><?php echo wp_specialchars( $title ); ?></h2>
     89<?php $h2_search = isset($_GET['s']) && $_GET['s'] ? ' ' . sprintf(__('matching &#8220;%s&#8221;'), wp_specialchars( stripslashes($_GET['s']) ) ) : ''; ?>
     90<h2><?php echo wp_specialchars( $title ) . $h2_search; ?></h2>
    9091
    9192<?php
Note: See TracChangeset for help on using the changeset viewer.