Remove update notifications from site-themes. See #14897

git-svn-id: https://develop.svn.wordpress.org/trunk@16629 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Pete Mall 2010-11-30 20:31:49 +00:00
parent f9c217c5e3
commit 4331aa9663
1 changed files with 4 additions and 2 deletions

View File

@ -97,7 +97,7 @@ class WP_MS_Themes_List_Table extends WP_List_Table {
} }
} }
if ( !current_user_can( 'update_themes' ) ) if ( !current_user_can( 'update_themes' ) || $this->is_site_themes )
$themes['upgrade'] = array(); $themes['upgrade'] = array();
if ( $s ) { if ( $s ) {
@ -235,7 +235,7 @@ class WP_MS_Themes_List_Table extends WP_List_Table {
$actions['enable-selected'] = __( 'Enable' ); $actions['enable-selected'] = __( 'Enable' );
if ( 'disabled' != $status ) if ( 'disabled' != $status )
$actions['disable-selected'] = __( 'Disable' ); $actions['disable-selected'] = __( 'Disable' );
if ( current_user_can( 'update_themes' ) ) if ( current_user_can( 'update_themes' ) && !$this->is_site_themes )
$actions['update-selected'] = __( 'Update' ); $actions['update-selected'] = __( 'Update' );
return $actions; return $actions;
@ -344,6 +344,8 @@ class WP_MS_Themes_List_Table extends WP_List_Table {
echo "</tr>"; echo "</tr>";
if ( $this->is_site_themes )
remove_action( "after_theme_row_$theme_key", 'wp_theme_update_row' );
do_action( 'after_theme_row', $theme_key, $theme, $status ); do_action( 'after_theme_row', $theme_key, $theme, $status );
do_action( "after_theme_row_$theme_key", $theme_key, $theme, $status ); do_action( "after_theme_row_$theme_key", $theme_key, $theme, $status );
} }