diff --git a/wp-admin/plugin-editor.php b/wp-admin/plugin-editor.php index d1b12e8b39..1558164096 100644 --- a/wp-admin/plugin-editor.php +++ b/wp-admin/plugin-editor.php @@ -171,8 +171,14 @@ default:

fatal error.') ?>

- + if ( wp_verify_nonce( $_GET['_error_nonce'], 'plugin-activation-error_' . $file ) ) { + $iframe_url = add_query_arg( array( + 'action' => 'error_scrape', + 'plugin' => urlencode( $file ), + '_wpnonce' => urlencode( $_GET['_error_nonce'] ), + ), admin_url( 'plugins.php' ) ); + ?> +
diff --git a/wp-includes/version.php b/wp-includes/version.php index fcb46cebc7..151bd81047 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-35106'; +$wp_version = '4.4-alpha-35107'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.