From 1fd3903e2dbb8dc1b72f9633decad15d399a84de Mon Sep 17 00:00:00 2001 From: jim-p Date: Wed, 17 Sep 2014 13:32:26 -0400 Subject: [PATCH] Fix typos --- etc/phpshellsessions/changepassword | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/etc/phpshellsessions/changepassword b/etc/phpshellsessions/changepassword index 8d698fe49a..6243fb8a3f 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']); }