Changeset 25657
- Timestamp:
- 10/02/2013 05:48:55 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/install.php
r25620 r25657 207 207 } elseif ( $admin_password != $admin_password_check ) { 208 208 // TODO: poka-yoke 209 display_setup_form( __( 'Your passwords do not match. Please try again ' ) );209 display_setup_form( __( 'Your passwords do not match. Please try again.' ) ); 210 210 $error = true; 211 211 } else if ( empty( $admin_email ) ) { … … 215 215 } elseif ( ! is_email( $admin_email ) ) { 216 216 // TODO: poka-yoke 217 display_setup_form( __( 'Sorry, that isn’t a valid email address. Email addresses look like : <code>username@example.com</code>' ) );217 display_setup_form( __( 'Sorry, that isn’t a valid email address. Email addresses look like <code>username@example.com</code>.' ) ); 218 218 $error = true; 219 219 }
Note: See TracChangeset
for help on using the changeset viewer.