Ticket #25836: wp-admin_plugins-php.patch
File wp-admin_plugins-php.patch, 952 bytes (added by , 12 years ago) |
---|
-
wp-admin/plugins.php
147 147 include( WP_PLUGIN_DIR . '/' . $plugin ); 148 148 } 149 149 plugin_sandbox_scrape( $plugin ); 150 151 /** This action is documented in wp-admin/includes/plugins.php */ 150 152 do_action('activate_' . $plugin); 153 151 154 exit; 152 155 break; 153 156 case 'deactivate': … … 415 418 printf( '<span class="subtitle">' . __('Search results for “%s”') . '</span>', esc_html( $s ) ); ?> 416 419 </h2> 417 420 418 <?php do_action( 'pre_current_active_plugins', $plugins['all'] ) ?> 421 <?php 422 /** 423 * Fires before the list of currently active plugins is rendered. 424 * 425 * @since 3.0 426 * 427 * @param array $plugins['all'] Array containing all installed plugins. 428 */ 429 do_action( 'pre_current_active_plugins', $plugins['all'] ); 430 ?> 419 431 420 432 <?php $wp_list_table->views(); ?> 421 433