Use !empty() for Link searching title.
git-svn-id: http://svn.automattic.com/wordpress/trunk@12895 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
92835977c3
commit
34a88119f8
|
@ -43,9 +43,9 @@ if ( empty($order_by) )
|
|||
|
||||
$title = __('Edit Links');
|
||||
$this_file = $parent_file = 'link-manager.php';
|
||||
include_once ("./admin-header.php");
|
||||
include_once ('./admin-header.php');
|
||||
|
||||
if (!current_user_can('manage_links'))
|
||||
if ( ! current_user_can('manage_links') )
|
||||
wp_die(__("You do not have sufficient permissions to edit the links for this blog."));
|
||||
|
||||
switch ($order_by) {
|
||||
|
@ -73,7 +73,7 @@ switch ($order_by) {
|
|||
<div class="wrap nosubsub">
|
||||
<?php screen_icon(); ?>
|
||||
<h2><?php echo esc_html( $title ); ?> <a href="link-add.php" class="button add-new-h2"><?php echo esc_html_x('Add New', 'link'); ?></a> <?php
|
||||
if ( isset($_GET['s']) && $_GET['s'] )
|
||||
if ( !empty($_GET['s']) )
|
||||
printf( '<span class="subtitle">' . __('Search results for “%s”') . '</span>', esc_html( stripslashes($_GET['s']) ) ); ?>
|
||||
</h2>
|
||||
|
||||
|
|
Loading…
Reference in New Issue