Make WordPress Core

Ticket #26156: install.email.diff

File install.email.diff, 1.0 KB (added by morganestes, 11 years ago)

wp-admin/install.php

  • wp-admin/install.php

     
    128128                </tr>
    129129                <?php endif; ?>
    130130                <tr>
    131                         <th scope="row"><label for="admin_email"><?php _e( 'Your E-mail' ); ?></label></th>
     131                        <th scope="row"><label for="admin_email"><?php _e( 'Your Email' ); ?></label></th>
    132132                        <td><input name="admin_email" type="text" id="admin_email" size="25" value="<?php echo esc_attr( $admin_email ); ?>" />
    133133                        <p><?php _e( 'Double-check your email address before continuing.' ); ?></p></td>
    134134                </tr>
     
    196196                $admin_password_check = isset($_POST['admin_password2']) ? wp_unslash( $_POST['admin_password2'] ) : '';
    197197                $admin_email  = isset( $_POST['admin_email']  ) ?trim( wp_unslash( $_POST['admin_email'] ) ) : '';
    198198                $public       = isset( $_POST['blog_public']  ) ? (int) $_POST['blog_public'] : 0;
    199                 // check e-mail address
     199                // check email address
    200200                $error = false;
    201201                if ( empty( $user_name ) ) {
    202202                        // TODO: poka-yoke