Don't show edit link for comments when the user cannot edit them, props filosofo, fixes #10520 for 2.8

git-svn-id: http://svn.automattic.com/wordpress/branches/2.8@11751 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
azaozz 2009-07-30 15:41:40 +00:00
parent 9681a5253d
commit f1f76a4e4c
1 changed files with 1 additions and 2 deletions

View File

@ -768,8 +768,7 @@ function get_edit_comment_link( $comment_id = 0 ) {
function edit_comment_link( $link = 'Edit This', $before = '', $after = '' ) {
global $comment, $post;
if ( $post->post_type == 'attachment' ) {
} elseif ( $post->post_type == 'page' ) {
if ( $post->post_type == 'page' ) {
if ( !current_user_can( 'edit_page', $post->ID ) )
return;
} else {