Make WordPress Core


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

Add search string to H2s, fixes #8373

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/edit-link-categories.php

    r10020 r10034  
    6262<div class="wrap nosubsub">
    6363<?php screen_icon(); ?>
    64 <h2><?php echo wp_specialchars( $title ); ?></h2>
     64<?php $h2_search = isset($_GET['s']) && $_GET['s'] ? ' ' . sprintf(__('matching &#8220;%s&#8221;'), wp_specialchars( stripslashes($_GET['s']) ) ) : ''; ?>
     65<h2><?php echo wp_specialchars( $title ) . $h2_search; ?></h2>
    6566
    6667<?php if ( isset($_GET['message']) && ( $msg = (int) $_GET['message'] ) ) : ?>
Note: See TracChangeset for help on using the changeset viewer.