Make WordPress Core

Changeset 16919


Ignore:
Timestamp:
12/14/2010 04:46:45 PM (14 years ago)
Author:
ryan
Message:

Hide add new button or link to network/plugin-install on plugins page. Props ocean90. fixes #15785

Location:
trunk/wp-admin
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/plugins.php

    r16900 r16919  
    361361<div class="wrap">
    362362<?php screen_icon(); ?>
    363 <h2><?php echo esc_html( $title ); if ( current_user_can('install_plugins') ) { ?> <a href="plugin-install.php" class="button add-new-h2"><?php echo esc_html_x('Add New', 'plugin'); ?></a><?php } ?></h2>
     363<h2><?php echo esc_html( $title );
     364if ( ( ! is_multisite() || is_network_admin() ) && current_user_can('install_plugins') ) { ?>
     365<a href="<?php echo self_admin_url( 'plugin-install.php' ); ?>" class="button add-new-h2"><?php echo esc_html_x('Add New', 'plugin'); ?></a>
     366<?php } ?></h2>
    364367
    365368<?php do_action( 'pre_current_active_plugins', $plugins['all'] ) ?>
  • trunk/wp-admin/themes.php

    r16900 r16919  
    8484else : ?>
    8585<h2>
    86 <?php esc_html_e( $title ); ?>
     86<?php echo esc_html( $title ); ?>
    8787<?php endif; ?>
    8888</h2>
Note: See TracChangeset for help on using the changeset viewer.