From e1f5876ac405d4858056e7cf6a89ddb290e5b742 Mon Sep 17 00:00:00 2001 From: Scott Taylor Date: Tue, 6 May 2014 18:03:34 +0000 Subject: [PATCH] In `display_setup_form()`, `$admin_password` is set and (fortunately) not used or displayed. See #27882. git-svn-id: https://develop.svn.wordpress.org/trunk@28306 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/install.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/wp-admin/install.php b/src/wp-admin/install.php index d29c809873..2955e49b0d 100644 --- a/src/wp-admin/install.php +++ b/src/wp-admin/install.php @@ -83,7 +83,6 @@ function display_setup_form( $error = null ) { $weblog_title = isset( $_POST['weblog_title'] ) ? trim( wp_unslash( $_POST['weblog_title'] ) ) : ''; $user_name = isset($_POST['user_name']) ? trim( wp_unslash( $_POST['user_name'] ) ) : ''; - $admin_password = isset($_POST['admin_password']) ? trim( wp_unslash( $_POST['admin_password'] ) ) : ''; $admin_email = isset( $_POST['admin_email'] ) ? trim( wp_unslash( $_POST['admin_email'] ) ) : ''; if ( ! is_null( $error ) ) {