mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-08-11 20:30:23 +00:00
Fix typo in read_pages conditional. Props McShelby. fixes #3705
git-svn-id: https://develop.svn.wordpress.org/trunk@4825 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -55,7 +55,7 @@ class WP_Roles {
|
||||
unset($this->role_objects[$role]);
|
||||
unset($this->role_names[$role]);
|
||||
unset($this->roles[$role]);
|
||||
|
||||
|
||||
if ( $this->use_db )
|
||||
update_option($this->role_key, $this->roles);
|
||||
}
|
||||
@@ -427,7 +427,7 @@ function map_meta_cap($cap, $user_id) {
|
||||
}
|
||||
|
||||
$author_data = get_userdata($user_id);
|
||||
$page_author_data = get_userdata($post->post_author);
|
||||
$page_author_data = get_userdata($page->post_author);
|
||||
if ($user_id == $page_author_data->ID)
|
||||
$caps[] = 'read';
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user