From 428d8209782f56573c0ac93c89eea0bd47f00170 Mon Sep 17 00:00:00 2001 From: ryan Date: Mon, 25 Feb 2008 18:34:45 +0000 Subject: [PATCH] Grammar fix. Props thenlich and hansengel. fixes #5991 git-svn-id: http://svn.automattic.com/wordpress/trunk@7021 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- xmlrpc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xmlrpc.php b/xmlrpc.php index ec103262ae..336b546fcc 100644 --- a/xmlrpc.php +++ b/xmlrpc.php @@ -692,7 +692,7 @@ class wp_xmlrpc_server extends IXR_Server { set_current_user( 0, $username ); if( !current_user_can( 'edit_posts' ) ) { - return new IXR_Error( 403, __( 'You are not allowed details about comments.' ) ); + return new IXR_Error( 403, __( 'You are not allowed access to details about comments.' ) ); } do_action('xmlrpc_call', 'wp.getCommentCount');