Ensure the map_meta_cap filter receives the right cap when the map_meta_cap flag is false. fixes #15779.

git-svn-id: https://develop.svn.wordpress.org/trunk@16909 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2010-12-14 11:22:32 +00:00
parent a8ad040d3c
commit 12da6006e0

View File

@ -828,6 +828,9 @@ function map_meta_cap( $cap, $user_id ) {
if ( ! $post_type->map_meta_cap ) {
$caps[] = $post_type->cap->$cap;
// Prior to 3.1 we would re-call map_meta_cap here.
if ( $cap == 'delete_post' )
$cap = $post_type->cap->$cap;
break;
}
@ -870,6 +873,9 @@ function map_meta_cap( $cap, $user_id ) {
if ( ! $post_type->map_meta_cap ) {
$caps[] = $post_type->cap->$cap;
// Prior to 3.1 we would re-call map_meta_cap here.
if ( $cap == 'edit_post' )
$cap = $post_type->cap->$cap;
break;
}
@ -911,6 +917,9 @@ function map_meta_cap( $cap, $user_id ) {
if ( ! $post_type->map_meta_cap ) {
$caps[] = $post_type->cap->$cap;
// Prior to 3.1 we would re-call map_meta_cap here.
if ( $cap == 'read_post' )
$cap = $post_type->cap->$cap;
break;
}