From 24967882b676dfe615b9d0331a00dffcaad82290 Mon Sep 17 00:00:00 2001 From: Dion Hulse Date: Sat, 2 Jan 2016 03:39:21 +0000 Subject: [PATCH] Widgets: Revert [34465], as it introduced a regression, making the `$index` argument of `dynamic_sidebar()` case-sensitive. Merges [36130] to the 4.4 branch. See #23423. Fixes #34995. Built from https://develop.svn.wordpress.org/branches/4.4@36148 git-svn-id: http://core.svn.wordpress.org/branches/4.4@36114 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/version.php | 2 +- wp-includes/widgets.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-includes/version.php b/wp-includes/version.php index 4171476140..aa44824f19 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4.1-alpha-36147'; +$wp_version = '4.4.1-alpha-36148'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. diff --git a/wp-includes/widgets.php b/wp-includes/widgets.php index 5a2f58c5dc..cfc5b93cc2 100644 --- a/wp-includes/widgets.php +++ b/wp-includes/widgets.php @@ -607,9 +607,9 @@ function dynamic_sidebar( $index = 1 ) { if ( is_int( $index ) ) { $index = "sidebar-$index"; } else { - $sanitized_index = sanitize_title( $index ); + $index = sanitize_title( $index ); foreach ( (array) $wp_registered_sidebars as $key => $value ) { - if ( sanitize_title( $value['name'] ) == $sanitized_index ) { + if ( sanitize_title( $value['name'] ) == $index ) { $index = $key; break; }