From 7b3b8f6fd4e29f3d4609195e29dd033d47a7e19b Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Thu, 31 Dec 2015 03:13:26 +0000 Subject: [PATCH] Widgets: Revert [34465], as it introduced a regression, making the `$index` argument of `dynamic_sidebar()` case-sensitive. Fixes #34995 for trunk. See #23423. Built from https://develop.svn.wordpress.org/trunk@36130 git-svn-id: http://core.svn.wordpress.org/trunk@36096 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 4a56070f85..079d209e4c 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.5-alpha-36128'; +$wp_version = '4.5-alpha-36130'; /** * 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 848249170a..b24b465503 100644 --- a/wp-includes/widgets.php +++ b/wp-includes/widgets.php @@ -616,9 +616,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; }