Make WordPress Core


Ignore:
Timestamp:
08/28/2015 03:16:02 AM (10 years ago)
Author:
helen
Message:

Drop the hyphen from e-mail and standardize on email.

The AP Stylebook changed this in 2011, and we're woefully inconsistent, so let's go with the standard.

props morganestes, voldemortensen, niallkennedy (for patching on the previous AP style).
fixes #26156.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/install.php

    r33495 r33774  
    173173        <?php endif; ?>
    174174        <tr>
    175             <th scope="row"><label for="admin_email"><?php _e( 'Your E-mail' ); ?></label></th>
     175            <th scope="row"><label for="admin_email"><?php _e( 'Your Email' ); ?></label></th>
    176176            <td><input name="admin_email" type="email" id="admin_email" size="25" value="<?php echo esc_attr( $admin_email ); ?>" />
    177177            <p><?php _e( 'Double-check your email address before continuing.' ); ?></p></td>
     
    294294        $public       = isset( $_POST['blog_public'] ) ? (int) $_POST['blog_public'] : 0;
    295295
    296         // Check e-mail address.
     296        // Check email address.
    297297        $error = false;
    298298        if ( empty( $user_name ) ) {
Note: See TracChangeset for help on using the changeset viewer.