Don't add search wildcards to an empty string. fixes #17719

git-svn-id: http://svn.automattic.com/wordpress/trunk@18179 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2011-06-07 16:05:04 +00:00
parent 1b8b61d1ae
commit 6c6db6a54e
1 changed files with 2 additions and 1 deletions

View File

@ -52,7 +52,8 @@ class WP_Users_List_Table extends WP_List_Table {
'fields' => 'all_with_meta'
);
$args['search'] = '*' . $args['search'] . '*';
if ( '' !== $args['search'] )
$args['search'] = '*' . $args['search'] . '*';
if ( $this->is_site_users )
$args['blog_id'] = $this->site_id;