Changeset 5079 for trunk/includes/forums/capabilities.php
- Timestamp:
- 08/19/2013 07:20:19 AM (13 years ago)
- File:
-
- 1 edited
-
trunk/includes/forums/capabilities.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/includes/forums/capabilities.php
r4995 r5079 137 137 $caps[] = 'do_not_allow'; 138 138 139 // User is author so allow edit 140 } elseif ( (int) $user_id === (int) $_post->post_author) {139 // User is author so allow edit if not in admin 140 } elseif ( !is_admin() && ( (int) $user_id === (int) $_post->post_author ) ) { 141 141 $caps[] = $post_type->cap->edit_posts; 142 142
Note: See TracChangeset
for help on using the changeset viewer.