Make WordPress Core

Changeset 33976


Ignore:
Timestamp:
09/09/2015 06:21:05 AM (11 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 3.8 branch.

Props pento, dd32.

See #33154.

File:
1 edited

Legend:

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

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