Ticket #37495: uploader-filter.diff
File uploader-filter.diff, 1.2 KB (added by , 9 years ago) |
---|
-
wp-admin/plugin-install.php
130 130 * Output the upload plugin form on every plugin install screen, so it can be 131 131 * displayed via JavaScript rather then opening up the devoted upload plugin page. 132 132 */ 133 install_plugins_upload(); ?> 133 134 /** 135 * Fires after the plugins list table in each tab of the Install Plugins screen. 136 * 137 * @since 2.7 138 * 139 */ 140 do_action('install_plugins_upload'); ?> 134 141 </div> 135 142 136 143 <?php -
wp-admin/includes/admin-filters.php
70 70 71 71 // Plugin Install hooks. 72 72 add_action( 'install_plugins_featured', 'install_dashboard' ); 73 add_action( 'install_plugins_upload', 'install_plugins_upload' ); 73 74 add_action( 'install_plugins_search', 'display_plugins_table' ); 74 75 add_action( 'install_plugins_popular', 'display_plugins_table' ); 75 76 add_action( 'install_plugins_recommended', 'display_plugins_table' );