Fix the 'current_user_can' check for 'add-comment'.
git-svn-id: http://svn.automattic.com/wordpress/trunk@12438 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
d73b6930ea
commit
5fceee4f91
|
@ -636,7 +636,7 @@ case 'get-tagcloud' :
|
|||
break;
|
||||
case 'add-comment' :
|
||||
check_ajax_referer( $action );
|
||||
if ( !current_user_can( 'edit_post', $id ) )
|
||||
if ( !current_user_can( 'edit_posts' ) )
|
||||
die('-1');
|
||||
$search = isset($_POST['s']) ? $_POST['s'] : false;
|
||||
$status = isset($_POST['comment_status']) ? $_POST['comment_status'] : 'all';
|
||||
|
|
Loading…
Reference in New Issue