Make WordPress Core


Ignore:
Timestamp:
05/02/2018 06:41:10 PM (7 years ago)
Author:
azaozz
Message:

Privacy: fix inconsistencies in new strings.

Props audrasjb.
Fixes #43925.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/user.php

    r43055 r43118  
    29882988
    29892989    if ( ! is_email( $email_address ) ) {
    2990         return new WP_Error( 'invalid_email', __( 'Invalid email address' ) );
     2990        return new WP_Error( 'invalid_email', __( 'Invalid email address.' ) );
    29912991    }
    29922992
    29932993    if ( ! $action_name ) {
    2994         return new WP_Error( 'invalid_action', __( 'Invalid action name' ) );
     2994        return new WP_Error( 'invalid_action', __( 'Invalid action name.' ) );
    29952995    }
    29962996
Note: See TracChangeset for help on using the changeset viewer.