diff --git a/wp-admin/plugins.php b/wp-admin/plugins.php
index 5c549f80ef..93aec79d78 100644
--- a/wp-admin/plugins.php
+++ b/wp-admin/plugins.php
@@ -462,8 +462,14 @@ if ( ! empty( $invalid ) ) {
?>
-
+ if ( ! isset( $_GET['main'] ) && ! isset( $_GET['charsout'] ) && wp_verify_nonce( $_GET['_error_nonce'], 'plugin-activation-error_' . $plugin ) ) {
+ $iframe_url = add_query_arg( array(
+ 'action' => 'error_scrape',
+ 'plugin' => urlencode( $plugin ),
+ '_wpnonce' => urlencode( $_GET['_error_nonce'] ),
+ ), admin_url( 'plugins.php' ) );
+ ?>
+
diff --git a/wp-includes/version.php b/wp-includes/version.php
index 830193cca6..074d1f2a34 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
-$wp_version = '4.4-alpha-35108';
+$wp_version = '4.4-alpha-35109';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.