Fix typos

This commit is contained in:
jim-p 2014-09-17 13:32:26 -04:00
parent c4372d3c3b
commit 1fd3903e2d

View File

@ -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']);
}