Make WordPress Core

Changeset 33974


Ignore:
Timestamp:
09/09/2015 06:09:25 AM (9 years ago)
Author:
pento
Message:

Capabilities: Fall back to the edit_posts capability for orphaned comments.

Merge of the capabilities.php part of [33614] to the 4.0 branch.

Props pento, dd32.

See #33154.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/4.0/src/wp-includes/capabilities.php

    r33376 r33974  
    12321232            break;
    12331233        $post = get_post( $comment->comment_post_ID );
    1234         $caps = map_meta_cap( 'edit_post', $user_id, $post->ID );
     1234
     1235        /*
     1236         * If the post doesn't exist, we have an orphaned comment.
     1237         * Fall back to the edit_posts capability, instead.
     1238         */
     1239        if ( $post ) {
     1240            $caps = map_meta_cap( 'edit_post', $user_id, $post->ID );
     1241        } else {
     1242            $caps = map_meta_cap( 'edit_posts', $user_id );
     1243        }
    12351244        break;
    12361245    case 'unfiltered_upload':
Note: See TracChangeset for help on using the changeset viewer.