Make WordPress Core

Ticket #9710: 9710.4.diff

File 9710.4.diff, 859 bytes (added by Denis-de-Bernardy, 17 years ago)

Change the notice message to remove inconsistencies

  • wp-admin/includes/user.php

     
    825825                return;
    826826
    827827        echo '<div class="error default-password-nag"><p>';
    828         printf(__("Howdy, you're still using the auto-generated password for your account. We recommend that you change it to something you'll remember easier.  Would you like to do this now?<br />
     828        printf(__("Notice: you're using the auto-generated password for your account. Would you like to change it to something you'll remember easier?<br />
    829829                          <a href='%s'>Yes, Take me to my profile page</a> | <a href='%s' id='default-password-nag-no'>No Thanks, Do not remind me again.</a>"), admin_url('profile.php') . '#password', '?default_password_nag=0');
    830830        echo '</p></div>';
    831831}