From 4a62825a058dda66fc498c9f0e3e16eca3a34bca Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Mon, 4 Jul 2016 22:10:28 +0000 Subject: [PATCH] Text Changes: Remove duplicate string, use the one we already have. See #34521. Built from https://develop.svn.wordpress.org/trunk@37960 git-svn-id: http://core.svn.wordpress.org/trunk@37901 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/ajax-actions.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/includes/ajax-actions.php b/wp-admin/includes/ajax-actions.php index a25f34a4e2..e5b3262bd5 100644 --- a/wp-admin/includes/ajax-actions.php +++ b/wp-admin/includes/ajax-actions.php @@ -3397,7 +3397,7 @@ function wp_ajax_update_theme() { ); if ( ! current_user_can( 'update_themes' ) ) { - $status['errorMessage'] = __( 'Sorry, you are not allowed to update themes on this site.' ); + $status['errorMessage'] = __( 'Sorry, you are not allowed to update themes for this site.' ); wp_send_json_error( $status ); } diff --git a/wp-includes/version.php b/wp-includes/version.php index 8f1b207747..d42ad4e02d 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.6-beta1-37959'; +$wp_version = '4.6-beta1-37960'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.