Use the edit_others_posts capability for controlling sticky checkbox display and usage. see #7457

git-svn-id: https://develop.svn.wordpress.org/trunk@8577 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Mark Jaquith
2008-08-06 21:31:40 +00:00
parent 8c9625eede
commit 0ca7018899
2 changed files with 9 additions and 5 deletions

View File

@@ -161,10 +161,12 @@ function edit_post() {
wp_set_post_lock( $post_ID, $GLOBALS['current_user']->ID );
if ( !empty($_POST['sticky']) )
stick_post($post_ID);
else
unstick_post($post_ID);
if ( current_user_can( 'edit_others_posts' ) ) {
if ( !empty($_POST['sticky']) )
stick_post($post_ID);
else
unstick_post($post_ID);
}
return $post_ID;
}