Make WordPress Core

Changeset 33972


Ignore:
Timestamp:
09/09/2015 06:00:33 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.2 branch.

Props pento, dd32.

See #33154.

File:
1 edited

Legend:

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

    r33358 r33972  
    12611261            break;
    12621262        $post = get_post( $comment->comment_post_ID );
    1263         $caps = map_meta_cap( 'edit_post', $user_id, $post->ID );
     1263
     1264        /*
     1265         * If the post doesn't exist, we have an orphaned comment.
     1266         * Fall back to the edit_posts capability, instead.
     1267         */
     1268        if ( $post ) {
     1269            $caps = map_meta_cap( 'edit_post', $user_id, $post->ID );
     1270        } else {
     1271            $caps = map_meta_cap( 'edit_posts', $user_id );
     1272        }
    12641273        break;
    12651274    case 'unfiltered_upload':
Note: See TracChangeset for help on using the changeset viewer.