[wp-trac] [WordPress Trac] #16295: Authors can see files uploaded by other authors in Media Library
WordPress Trac
wp-trac at lists.automattic.com
Wed Jan 19 10:43:29 UTC 2011
#16295: Authors can see files uploaded by other authors in Media Library
--------------------------+------------------------------
Reporter: andreyk | Owner:
Type: enhancement | Status: new
Priority: normal | Milestone: Awaiting Review
Component: Media | Version: 3.0.4
Severity: normal | Resolution:
Keywords: dev-feedback |
--------------------------+------------------------------
Comment (by nacin):
{{{
if ( is_admin() )
add_action( 'request', 'nacin_hide_uploads_from_other_users' );
function nacin_hide_uploads_from_other_users( $request ) {
global $pagenow;
if ( 'upload.php' == $pagenow && ! current_user_can(
'edit_others_posts' ) )
$request['author'] = get_current_user_id();
return $request;
}
}}}
--
Ticket URL: <http://core.trac.wordpress.org/ticket/16295#comment:3>
WordPress Trac <http://core.trac.wordpress.org/>
WordPress blogging software
More information about the wp-trac
mailing list