diff --git wp-admin/edit-comments.php wp-admin/edit-comments.php
index d1bf2b5..e6b8506 100644
--- wp-admin/edit-comments.php
+++ wp-admin/edit-comments.php
@@ -8,8 +8,11 @@
 
 /** WordPress Administration Bootstrap */
 require_once( dirname( __FILE__ ) . '/admin.php' );
-if ( !current_user_can('edit_posts') )
-	wp_die( __( 'Cheatin&#8217; uh?' ), 403 );
+if ( !current_user_can('edit_posts') ) {
+	$user = wp_get_current_user();
+	wp_die( sprintf( __( 'User <code>%s</code> does not have the required capability <code>%s</code>
+		to perform this action in <code>%s:%s</code>.' ), $user->user_login, 'edit_posts', __FILE__, __LINE__ ), 403 );
+}
 
 $wp_list_table = _get_list_table('WP_Comments_List_Table');
 $pagenum = $wp_list_table->get_pagenum();
