diff --git a/usr/local/www/diag_authentication.php b/usr/local/www/diag_authentication.php index 91874d462f..19c0d6948c 100755 --- a/usr/local/www/diag_authentication.php +++ b/usr/local/www/diag_authentication.php @@ -56,9 +56,9 @@ if ($_POST) { if (!$input_errors) { if (authenticate_user($_POST['username'], $_POST['password'], $authcfg)) { - $savemsg = gettext("User") . ": " . $_POST['username'] . " " . gettext("authenticated sucessfully."); + $savemsg = gettext("User") . ": " . $_POST['username'] . " " . gettext("authenticated successfully."); $groups = getUserGroups($_POST['username'], $authcfg); - $savemsg .= "
" + gettext("This user is member of this groups") + ":
"; + $savemsg .= "
" . gettext("This user is a member of these groups") . ":
"; foreach ($groups as $group) $savemsg .= "{$group} "; } else {