diff options
Diffstat (limited to 'etc')
-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']); } |