Fix the 'current_user_can' check for 'add-comment'.

git-svn-id: https://develop.svn.wordpress.org/trunk@12438 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Ozz 2009-12-17 21:02:38 +00:00
parent c3e7918ed8
commit 7900028ff8
1 changed files with 1 additions and 1 deletions

View File

@ -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';