Only dumb down delete_others_posts if it deserves to exist. fixes a notice. see #14122.

git-svn-id: https://develop.svn.wordpress.org/trunk@15897 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2010-10-21 16:28:35 +00:00
parent 6d20960c97
commit 96052a12a5
1 changed files with 2 additions and 1 deletions

View File

@ -1019,7 +1019,8 @@ function get_post_type_capabilities( $args ) {
if ( ! post_type_supports( $args->name, 'author' ) ) {
// While these may be checked in core, users/roles shouldn't need to be granted these.
$default_capabilities['edit_others_posts'] = $default_capabilities['edit_posts'];
$default_capabilities['delete_others_posts'] = $default_capabilities['delete_posts'];
if ( $args->map_meta_cap )
$default_capabilities['delete_others_posts'] = $default_capabilities['delete_posts'];
}
$capabilities = array_merge( $default_capabilities, $args->capabilities );