From b581489e93eb003a9339b32eb43df75517a950d1 Mon Sep 17 00:00:00 2001 From: Boone Gorges Date: Sun, 27 Sep 2015 16:32:26 +0000 Subject: [PATCH] Add test for `get_term_by( 'slug' )` behavior with accented chars. When passing a value of 'slug' to `wp_insert_term()` that contains non-ASCII characters, WordPress converts accented characters to non-accented versions. (See `sanitize_title()` and `remove_accents()`.) The same conversion happens when fetching when fetching a term using a slug. In this way, it's possible to create a term and fetch it using the same accented string, even though the slug is actually stored with non-accented characters. See #16282. Built from https://develop.svn.wordpress.org/trunk@34628 git-svn-id: http://core.svn.wordpress.org/trunk@34592 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/version.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/version.php b/wp-includes/version.php index cd878e8ee2..8447dce072 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-34627'; +$wp_version = '4.4-alpha-34628'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.