From da7ebeb3a54f22b3c702dcf51ba46b1607e101d1 Mon Sep 17 00:00:00 2001 From: ryan Date: Tue, 25 Nov 2008 19:16:22 +0000 Subject: [PATCH] More Favorites git-svn-id: http://svn.automattic.com/wordpress/trunk@9876 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/template.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/wp-admin/includes/template.php b/wp-admin/includes/template.php index 0b2fed180e..6f7c14ac42 100644 --- a/wp-admin/includes/template.php +++ b/wp-admin/includes/template.php @@ -3080,9 +3080,11 @@ function the_post_password() { */ function favorite_actions() { $actions = array( - 'post-new.php' => array(__('Add New Post'), 'edit_posts'), - 'page-new.php' => array(__('Add New Page'), 'edit_pages'), - 'edit-comments.php' => array(__('Manage Comments'), 'moderate_comments') + 'post-new.php' => array(__('New Post'), 'edit_posts'), + 'edit.php?post_status=draft' => array(__('Drafts'), 'edit_posts'), + 'page-new.php' => array(__('New Page'), 'edit_pages'), + 'media-new.php' => array(__('Upload'), 'upload_files'), + 'edit-comments.php' => array(__('Comments'), 'moderate_comments') ); $actions = apply_filters('favorite_actions', $actions);