Changeset 15596
- Timestamp:
- 09/07/2010 11:35:28 PM (13 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/comment.php
r15132 r15596 61 61 comment_footer_die( __('Oops, no comment with this ID.') . sprintf(' <a href="%s">'.__('Go back').'</a>!', 'javascript:history.go(-1)') ); 62 62 63 if ( !current_user_can( 'edit_post', $comment->comment_post_ID) )64 comment_footer_die( __('You are not allowed to edit comments on this post.') );63 if ( !current_user_can( 'edit_comment', $comment_id ) ) 64 comment_footer_die( __('You are not allowed to edit this comment.') ); 65 65 66 66 if ( 'trash' == $comment->comment_approved ) … … 85 85 } 86 86 87 if ( !current_user_can( 'edit_ post', $comment->comment_post_ID ) ) {87 if ( !current_user_can( 'edit_comment', $comment->comment_ID ) ) { 88 88 wp_redirect( admin_url('edit-comments.php?error=2') ); 89 89 die(); … … 185 185 <?php wp_nonce_field( $nonce_action ); ?> 186 186 <input type='hidden' name='action' value='<?php echo esc_attr($formaction); ?>' /> 187 <input type='hidden' name='p' value='<?php echo esc_attr($comment->comment_post_ID); ?>' />188 187 <input type='hidden' name='c' value='<?php echo esc_attr($comment->comment_ID); ?>' /> 189 188 <input type='hidden' name='noredir' value='1' /> … … 213 212 if ( !$comment = get_comment($comment_id) ) 214 213 comment_footer_die( __('Oops, no comment with this ID.') . sprintf(' <a href="%s">'.__('Go back').'</a>!', 'edit-comments.php') ); 215 if ( !current_user_can( 'edit_post', $comment->comment_post_ID ) )214 if ( !current_user_can( 'edit_comment', $comment->comment_ID ) ) 216 215 comment_footer_die( __('You are not allowed to edit comments on this post.') ); 217 216 -
trunk/wp-admin/edit-comments.php
r15578 r15596 35 35 36 36 foreach ( $comment_ids as $comment_id ) { // Check the permissions on each 37 $_post_id = (int) $wpdb->get_var( $wpdb->prepare( "SELECT comment_post_ID FROM $wpdb->comments WHERE comment_ID = %d", $comment_id ) ); 38 39 if ( !current_user_can( 'edit_post', $_post_id ) ) 37 if ( !current_user_can( 'edit_comment', $comment_id ) ) 40 38 continue; 41 39 -
trunk/wp-admin/includes/dashboard.php
r15564 r15596 587 587 588 588 $actions_string = ''; 589 if ( current_user_can( 'edit_post', $comment->comment_post_ID) ) {589 if ( current_user_can( 'edit_comment', $comment->comment_ID ) ) { 590 590 // preorder it: Approve | Reply | Edit | Spam | Trash 591 591 $actions = array( -
trunk/wp-admin/includes/default-list-tables.php
r15578 r15596 2255 2255 $post = get_post( $comment->comment_post_ID ); 2256 2256 $the_comment_status = wp_get_comment_status( $comment->comment_ID ); 2257 $post_type_object = get_post_type_object( $post->post_type ); 2258 $user_can = current_user_can( $post_type_object->cap->edit_post, $post->ID ); 2257 $user_can = current_user_can( 'edit_comment', $comment_id ); 2259 2258 2260 2259 $comment_url = esc_url( get_comment_link( $comment->comment_ID ) ); … … 2276 2275 $approve_nonce = esc_html( '_wpnonce=' . wp_create_nonce( "approve-comment_$comment->comment_ID" ) ); 2277 2276 2278 $url = "comment.php? post_ID=$post->ID&c=$comment->comment_ID";2277 $url = "comment.php?c=$comment->comment_ID"; 2279 2278 2280 2279 $approve_url = esc_url( $url . "&action=approvecomment&$approve_nonce" ); -
trunk/wp-includes/capabilities.php
r15566 r15596 897 897 //echo "post ID: {$args[0]}<br />"; 898 898 $post = get_post( $args[0] ); 899 899 900 $post_type = get_post_type_object( $post->post_type ); 900 901 if ( $post_type && 'post' != $post_type->capability_type ) { … … 989 990 $caps[] = 'read_private_pages'; 990 991 break; 992 case 'edit_comment': 993 $comment = get_comment( $args[0] ); 994 $post = get_post( $comment->comment_post_ID ); 995 $post_type_object = get_post_type_object( $post->post_type ); 996 997 $caps = map_meta_cap( $post_type_object->cap->edit_post, $user_id, $post->ID ); 998 break; 991 999 case 'unfiltered_upload': 992 1000 if ( defined('ALLOW_UNFILTERED_UPLOADS') && ALLOW_UNFILTERED_UPLOADS && ( !is_multisite() || is_super_admin( $user_id ) ) ) -
trunk/wp-includes/link-template.php
r15590 r15596 876 876 function get_edit_comment_link( $comment_id = 0 ) { 877 877 $comment = &get_comment( $comment_id ); 878 $post = &get_post( $comment->comment_post_ID ); 879 880 if ( $post->post_type == 'page' ) { 881 if ( !current_user_can( 'edit_page', $post->ID ) ) 882 return; 883 } else { 884 if ( !current_user_can( 'edit_post', $post->ID ) ) 885 return; 886 } 878 879 if ( !current_user_can( 'edit_comment', $comment->comment_ID ) ) 880 return; 887 881 888 882 $location = admin_url('comment.php?action=editcomment&c=') . $comment->comment_ID; … … 901 895 */ 902 896 function edit_comment_link( $link = null, $before = '', $after = '' ) { 903 global $comment, $post; 904 905 if ( $post->post_type == 'page' ) { 906 if ( !current_user_can( 'edit_page', $post->ID ) ) 907 return; 908 } else { 909 if ( !current_user_can( 'edit_post', $post->ID ) ) 910 return; 911 } 897 global $comment; 898 899 if ( !current_user_can( 'edit_comment', $comment->comment_ID ) ) 900 return; 912 901 913 902 if ( null === $link )
Note: See TracChangeset
for help on using the changeset viewer.