Place holder for Favorite Actions dropdown

git-svn-id: http://svn.automattic.com/wordpress/trunk@8986 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2008-09-25 23:51:33 +00:00
parent e356231388
commit 90b00890d3
2 changed files with 3 additions and 2 deletions

View File

@ -156,4 +156,7 @@ do_action('admin_notices');
if ( $parent_file == 'options-general.php' ) {
require(ABSPATH . 'wp-admin/options-head.php');
}
favorite_actions();
?>

View File

@ -90,8 +90,6 @@ if ( empty($_GET['mode']) )
else
$mode = attribute_escape($_GET['mode']);
favorite_actions();
if ( isset($_GET['posted']) && $_GET['posted'] ) : $_GET['posted'] = (int) $_GET['posted']; ?>
<div id="message" class="updated fade"><p><strong><?php _e('Your post has been saved.'); ?></strong> <a href="<?php echo get_permalink( $_GET['posted'] ); ?>"><?php _e('View post'); ?></a> | <a href="<?php echo get_edit_post_link( $_GET['posted'] ); ?>"><?php _e('Edit post'); ?></a></p></div>
<?php $_SERVER['REQUEST_URI'] = remove_query_arg(array('posted'), $_SERVER['REQUEST_URI']);