Security t()

missed t() calls in security
This commit is contained in:
Adam Magness 2018-01-22 15:21:43 -05:00
parent 6e758d0074
commit bae725c279
1 changed files with 3 additions and 3 deletions

View File

@ -77,10 +77,10 @@ function authenticate_success($user_record, $login_initial = false, $interactive
if ($a->user['login_date'] <= NULL_DATE) { if ($a->user['login_date'] <= NULL_DATE) {
$_SESSION['return_url'] = 'profile_photo/new'; $_SESSION['return_url'] = 'profile_photo/new';
$a->module = 'profile_photo'; $a->module = 'profile_photo';
info(t("Welcome ") . $a->user['username'] . EOL); info(L10n::t("Welcome ") . $a->user['username'] . EOL);
info(t('Please upload a profile photo.') . EOL); info(L10n::t('Please upload a profile photo.') . EOL);
} else { } else {
info(t("Welcome back ") . $a->user['username'] . EOL); info(L10n::t("Welcome back ") . $a->user['username'] . EOL);
} }
} }