Plugins: Add file check to plugin deletions.

Merges [40169] to 4.7 branch.


Built from https://develop.svn.wordpress.org/branches/4.7@40170


git-svn-id: http://core.svn.wordpress.org/branches/4.7@40109 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Aaron Campbell 2017-03-06 12:58:35 +00:00
parent 25e3338dbc
commit 177b19d9ec
2 changed files with 9 additions and 1 deletions
wp-admin
wp-includes

@ -246,6 +246,14 @@ if ( $action ) {
exit;
}
// Bail on all if any paths are invalid.
// validate_file() returns truthy for invalid files
$invalid_plugin_files = array_filter( $plugins, 'validate_file' );
if ( $invalid_plugin_files ) {
wp_redirect( self_admin_url("plugins.php?plugin_status=$status&paged=$page&s=$s") );
exit;
}
include(ABSPATH . 'wp-admin/update.php');
$parent_file = 'plugins.php';

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.7.3-RC1-40161';
$wp_version = '4.7.3-RC1-40170';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.