diff --git a/wp-admin/includes/dashboard.php b/wp-admin/includes/dashboard.php index 80030bfa70..6f23631795 100644 --- a/wp-admin/includes/dashboard.php +++ b/wp-admin/includes/dashboard.php @@ -876,7 +876,8 @@ function wp_dashboard_cached_rss_widget( $widget_id, $callback, $check_urls = ar $check_urls = array( $widgets[$widget_id]['url'] ); } - $cache_key = 'dash_' . md5( $widget_id ); + $locale = get_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 2bdb65659a..5546462aa1 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.3-beta2-33182'; +$wp_version = '4.3-beta2-33183'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.