// TODO: Poka-yoke.
display_setup_form( __( 'You must provide an email address.'
) );
$error = true;
} elseif ( !
is_email( $admin_email ) ) { // TODO: Poka-yoke.
display_setup_form( __( 'Sorry, that is not a valid email address. Email addresses look like <code>username@example.com</code>.'
) );
$error = true;
} if ( false ===
$error ) { $wpdb->
show_errors();
$result =
wp_install( $weblog_title,
$user_name,
$admin_email,
$public, '',
wp_slash( $admin_password ),
$loaded_language );
?>
<h1><?php
_e( 'Success!'
); ?></h1>
<p><?php
_e( 'WordPress has been installed. Thank you, and enjoy!'
); ?></p>
<table class="form-table install-success">
<tr>
<th><?php
_e( 'Username'
); ?></th>
<td><?php
echo esc_html( sanitize_user( $user_name, true
) ); ?></td>
</tr>
<tr>
<th>