From d1822e81ba374e5ee23f69b3755ba0b8006b2995 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Tue, 21 Jul 2020 14:42:05 +0000 Subject: [PATCH] Site Health: Use consistent error messages when switching plugin or theme auto-updates on or off. Props ramiy. Fixes #50721. Built from https://develop.svn.wordpress.org/trunk@48534 git-svn-id: http://core.svn.wordpress.org/trunk@48296 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/ajax-actions.php | 4 ++-- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-admin/includes/ajax-actions.php b/wp-admin/includes/ajax-actions.php index ee2d186481..fa3dde021d 100644 --- a/wp-admin/includes/ajax-actions.php +++ b/wp-admin/includes/ajax-actions.php @@ -5324,7 +5324,7 @@ function wp_ajax_toggle_auto_updates() { switch ( $type ) { case 'plugin': if ( ! current_user_can( 'update_plugins' ) ) { - $error_message = __( 'You do not have permission to modify plugins.' ); + $error_message = __( 'Sorry, you are not allowed to modify plugins.' ); wp_send_json_error( array( 'error' => $error_message ) ); } @@ -5334,7 +5334,7 @@ function wp_ajax_toggle_auto_updates() { break; case 'theme': if ( ! current_user_can( 'update_themes' ) ) { - $error_message = __( 'You do not have permission to modify themes.' ); + $error_message = __( 'Sorry, you are not allowed to modify themes.' ); wp_send_json_error( array( 'error' => $error_message ) ); } diff --git a/wp-includes/version.php b/wp-includes/version.php index 93d6a83a4c..d1b552f0ce 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.5-beta2-48533'; +$wp_version = '5.5-beta2-48534'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.