diff --git a/wp-admin/includes/dashboard.php b/wp-admin/includes/dashboard.php index 6f23631795..8aae3b7a2b 100644 --- a/wp-admin/includes/dashboard.php +++ b/wp-admin/includes/dashboard.php @@ -877,7 +877,7 @@ function wp_dashboard_cached_rss_widget( $widget_id, $callback, $check_urls = ar } $locale = get_locale(); - $cache_key = 'dash_' . md5( $widget_id ) . '_' . $locale; + $cache_key = 'dash_' . md5( $widget_id . '_' . $locale ); if ( false !== ( $output = get_transient( $cache_key ) ) ) { echo $output; return true; diff --git a/wp-includes/version.php b/wp-includes/version.php index acd64c4e63..c2bcc54390 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.3-beta2-33191'; +$wp_version = '4.3-beta2-33192'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.