diff --git a/wp-admin/update-core.php b/wp-admin/update-core.php index 0409c72f29..235b09c16e 100644 --- a/wp-admin/update-core.php +++ b/wp-admin/update-core.php @@ -284,8 +284,8 @@ function list_plugin_updates() { } $details_url = self_admin_url('plugin-install.php?tab=plugin-information&plugin=' . $plugin_data->update->slug . '§ion=changelog&TB_iframe=true&width=640&height=662'); - $details_text = sprintf(__('View version %1$s details'), $plugin_data->update->new_version); - $details = sprintf('%3$s.', esc_url($details_url), esc_attr($plugin_data->Name), $details_text); + $details_text = sprintf(__('View version %1$s details.'), $plugin_data->update->new_version); + $details = sprintf('%3$s', esc_url($details_url), esc_attr($plugin_data->Name), $details_text); echo " diff --git a/wp-includes/version.php b/wp-includes/version.php index 3af857865e..03a868bdf7 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-33801'; +$wp_version = '4.4-alpha-33802'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.