diff options
author | jim-p <jimp@pfsense.org> | 2014-09-17 13:32:26 -0400 |
---|---|---|
committer | jim-p <jimp@pfsense.org> | 2014-09-17 13:32:45 -0400 |
commit | 1fd3903e2dbb8dc1b72f9633decad15d399a84de (patch) | |
tree | 56e426ff08a30bab85901e8260e5a53128171191 /etc/phpshellsessions/changepassword | |
parent | c4372d3c3bdb2fb8b8a15b554e5c86c2a7976412 (diff) | |
download | pfsense-1fd3903e2dbb8dc1b72f9633decad15d399a84de.zip pfsense-1fd3903e2dbb8dc1b72f9633decad15d399a84de.tar.gz |
Fix typos
Diffstat (limited to 'etc/phpshellsessions/changepassword')
-rw-r--r-- | etc/phpshellsessions/changepassword | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/phpshellsessions/changepassword b/etc/phpshellsessions/changepassword index 8d698fe..6243fb8 100644 --- a/etc/phpshellsessions/changepassword +++ b/etc/phpshellsessions/changepassword @@ -51,14 +51,14 @@ while (empty($confpassword)) { // Check if user is disabled if (is_account_disabled($username)) { - echo gettext("Acount is disabled, would you like to re-enable? [y|n]") . ": "; + echo gettext("Account is disabled, would you like to re-enable? [y|n]") . ": "; if (strcasecmp(chop(fgets($fp)), "y") == 0) { unset($user['disabled']); } } // Check if user is expired if (is_account_expired($username)) { - echo gettext("Acount is expired, would you like to clear the expiration date? [y|n]") . ": "; + echo gettext("Account is expired, would you like to clear the expiration date? [y|n]") . ": "; if (strcasecmp(chop(fgets($fp)), "y") == 0) { unset($user['expires']); } |