From 7a6cba1308000a0a244c3b0fd947d68182b3ad7f Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Mon, 20 Apr 2015 15:27:25 +0000 Subject: [PATCH] Remove duplicate string with a typo, merge it with an existing string. props pavelevap. fixes #32020. Built from https://develop.svn.wordpress.org/trunk@32209 git-svn-id: http://core.svn.wordpress.org/trunk@32182 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-wp-xmlrpc-server.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/class-wp-xmlrpc-server.php b/wp-includes/class-wp-xmlrpc-server.php index 898a322ff7..10c593d2a4 100644 --- a/wp-includes/class-wp-xmlrpc-server.php +++ b/wp-includes/class-wp-xmlrpc-server.php @@ -2916,7 +2916,7 @@ class wp_xmlrpc_server extends IXR_Server { return $this->error; if ( !current_user_can( 'edit_posts' ) ) - return new IXR_Error( 401, __( 'Sorry, you must be able to edit posts to this site in order to view categories.' ) ); + return new IXR_Error( 401, __( 'Sorry, you must be able to edit posts on this site in order to view categories.' ) ); /** This action is documented in wp-includes/class-wp-xmlrpc-server.php */ do_action( 'xmlrpc_call', 'wp.suggestCategories' ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 403d593bcc..096c503f39 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.2-RC1-32208'; +$wp_version = '4.2-RC1-32209'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.