From daecb5d36d4cafe9a659660cf82a6ed4e02f0248 Mon Sep 17 00:00:00 2001 From: Mark Jaquith Date: Mon, 24 Jan 2011 06:26:38 +0000 Subject: [PATCH] Revert [16832]. see #9591. fixes #16282 git-svn-id: https://develop.svn.wordpress.org/trunk@17357 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/taxonomy.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/taxonomy.php b/wp-includes/taxonomy.php index 3c1a3c770c..8515f8184c 100644 --- a/wp-includes/taxonomy.php +++ b/wp-includes/taxonomy.php @@ -879,7 +879,7 @@ function get_term_by($field, $value, $taxonomy, $output = OBJECT, $filter = 'raw if ( 'slug' == $field ) { $field = 't.slug'; - $value = sanitize_title_for_query($value); + $value = sanitize_title($value); if ( empty($value) ) return false; } else if ( 'name' == $field ) {