We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 419c8d9 commit 4d80f8bCopy full SHA for 4d80f8b
wp-admin/plugins.php
@@ -246,6 +246,14 @@
246
exit;
247
}
248
249
+ // Bail on all if any paths are invalid.
250
+ // validate_file() returns truthy for invalid files
251
+ $invalid_plugin_files = array_filter( $plugins, 'validate_file' );
252
+ if ( $invalid_plugin_files ) {
253
+ wp_redirect( self_admin_url("plugins.php?plugin_status=$status&paged=$page&s=$s") );
254
+ exit;
255
+ }
256
+
257
include(ABSPATH . 'wp-admin/update.php');
258
259
$parent_file = 'plugins.php';
wp-includes/version.php
@@ -4,7 +4,7 @@
4
*
5
* @global string $wp_version
6
*/
7
-$wp_version = '4.8-alpha-40160';
+$wp_version = '4.8-alpha-40169';
8
9
/**
10
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
0 commit comments