~canonical-sysadmins/wordpress/4.8.1

« back to all changes in this revision

Viewing changes to wp-admin/install.php

  • Committer: Nick Moffitt
  • Date: 2015-01-15 11:04:26 UTC
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: nick.moffitt@canonical.com-20150115110426-5stm1p14cfnxrtme
New Upstream Version 4.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
118
118
                                echo '<input name="user_name" type="hidden" value="admin" />';
119
119
                        } else {
120
120
                                ?><input name="user_name" type="text" id="user_login" size="25" value="<?php echo esc_attr( sanitize_user( $user_name, true ) ); ?>" />
121
 
                                <p><?php _e( 'Usernames can have only alphanumeric characters, spaces, underscores, hyphens, periods and the @ symbol.' ); ?></p>
 
121
                                <p><?php _e( 'Usernames can have only alphanumeric characters, spaces, underscores, hyphens, periods, and the @ symbol.' ); ?></p>
122
122
                        <?php
123
123
                        } ?>
124
124
                        </td>
133
133
                                <input name="admin_password" type="password" id="pass1" size="25" value="" />
134
134
                                <p><input name="admin_password2" type="password" id="pass2" size="25" value="" /></p>
135
135
                                <div id="pass-strength-result"><?php _e('Strength indicator'); ?></div>
136
 
                                <p><?php _e('Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers, and symbols like ! " ? $ % ^ &amp; ).'); ?></p>
 
136
                                <p><?php echo wp_get_password_hint(); ?></p>
137
137
                        </td>
138
138
                </tr>
139
139
                <?php endif; ?>