Make WordPress Core

Changeset 37796


Ignore:
Timestamp:
06/21/2016 02:31:29 PM (7 years ago)
Author:
rachelbaker
Message:

Revisions: Change the capability needed to view revision diffs to edit_post.

Merge of [37779] to the 4.4 branch.

Location:
branches/4.4/src/wp-admin
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/4.4/src/wp-admin/includes/ajax-actions.php

    r37147 r37796  
    27552755        wp_send_json_error();
    27562756
    2757     if ( ! current_user_can( 'read_post', $post->ID ) )
     2757    if ( ! current_user_can( 'edit_post', $post->ID ) )
    27582758        wp_send_json_error();
    27592759
  • branches/4.4/src/wp-admin/revision.php

    r33966 r37796  
    6464        break;
    6565
    66     if ( ! current_user_can( 'read_post', $revision->ID ) || ! current_user_can( 'read_post', $post->ID ) )
     66    if ( ! current_user_can( 'read_post', $revision->ID ) || ! current_user_can( 'edit_post', $revision->post_parent ) )
    6767        break;
    6868
Note: See TracChangeset for help on using the changeset viewer.