diff options
Diffstat (limited to 'includes')
-rw-r--r-- | includes/account.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/includes/account.php b/includes/account.php index 591871f..24c61d8 100644 --- a/includes/account.php +++ b/includes/account.php @@ -1290,7 +1290,7 @@ showheader(_("My CAcert.org Account!")); if($_SESSION['_config']['user']['pword1'] == "" || $_SESSION['_config']['user']['pword1'] != $_SESSION['_config']['user']['pword2']) { - echo '<h3 style="color:red">', _("Failure: Password not Changed"), + echo '<h3 style="color:red">', _("Failure: Pass Phrase not Changed"), '</h3>', "\n"; echo _("New Pass Phrases specified don't match or were blank."); } else { @@ -1309,20 +1309,20 @@ if(strlen($_SESSION['_config']['user']['pword1']) < 6) { echo '<h3 style="color:red">', - _("Failure: Password not Changed"), '</h3>', "\n"; + _("Failure: Pass Phrase not Changed"), '</h3>', "\n"; echo _("The Pass Phrase you submitted was too short."); } else if($score < 3) { echo '<h3 style="color:red">', - _("Failure: Password not Changed"), '</h3>', "\n"; + _("Failure: Pass Phrase not Changed"), '</h3>', "\n"; printf(_("The Pass Phrase you submitted failed to contain enough differing characters and/or contained words from your name and/or email address. Only scored %s points out of 6."), $score); } else if($rc <= 0) { echo '<h3 style="color:red">', - _("Failure: Password not Changed"), '</h3>', "\n"; + _("Failure: Pass Phrase not Changed"), '</h3>', "\n"; echo _("You failed to correctly enter your current Pass Phrase."); } else { mysql_query("update `users` set `password`=sha1('".$_SESSION['_config']['user']['pword1']."') where `id`='".$_SESSION['profile']['id']."'"); - echo '<h3>', _("Password Changed Successfully"), '</h3>', "\n"; + echo '<h3>', _("Pass Phrase Changed Successfully"), '</h3>', "\n"; echo _("Your Pass Phrase has been updated and your primary email account has been notified of the change."); $body = sprintf(_("Hi %s,"),$_SESSION['profile']['fname'])."\n"; $body .= _("You are receiving this email because you or someone else")."\n"; |