Remove favorite_actions() from h2s. Restore Add New buttons. see #17324

git-svn-id: http://svn.automattic.com/wordpress/trunk@17849 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan
2011-05-10 19:18:16 +00:00
parent 6e356e3b0a
commit e5ec44416a
10 changed files with 42 additions and 53 deletions

View File

@@ -359,7 +359,12 @@ if ( ! empty($messages) ) {
<h2>
<?php
echo esc_html( $title );
favorite_actions( $current_screen );
if ( current_user_can( 'create_users' ) ) { ?>
<a href="user-new.php" class="button add-new-h2"><?php echo esc_html_x( 'Add New', 'user' ); ?></a>
<?php } elseif ( is_multisite() && current_user_can( 'promote_users' ) ) { ?>
<a href="user-new.php" class="button add-new-h2"><?php echo esc_html_x( 'Add Existing', 'user' ); ?></a>
<?php }
if ( $usersearch )
printf( '<span class="subtitle">' . __('Search results for &#8220;%s&#8221;') . '</span>', esc_html( $usersearch ) ); ?>
</h2>