mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
Fix typos
This commit is contained in:
parent
c4372d3c3b
commit
1fd3903e2d
@ -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']);
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user