mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
[ticket/security/276] Add missing information message
SECURITY-276
This commit is contained in:
parent
f853f6523f
commit
24dd47adcf
2 changed files with 2 additions and 1 deletions
|
@ -76,7 +76,7 @@ class ucp_resend
|
||||||
// Do not resend activation email if valid one still exists
|
// Do not resend activation email if valid one still exists
|
||||||
if (!empty($user_row['user_actkey']) && (int) $user_row['user_actkey_expiration'] >= time())
|
if (!empty($user_row['user_actkey']) && (int) $user_row['user_actkey_expiration'] >= time())
|
||||||
{
|
{
|
||||||
trigger_error('ACTIVATION_EMAIL_ALREADY_SENT');
|
trigger_error('ACTIVATION_ALREADY_SENT');
|
||||||
}
|
}
|
||||||
|
|
||||||
// Determine coppa status on group (REGISTERED(_COPPA))
|
// Determine coppa status on group (REGISTERED(_COPPA))
|
||||||
|
|
|
@ -64,6 +64,7 @@ $lang = array_merge($lang, array(
|
||||||
'ACCOUNT_DEACTIVATED' => 'Your account has been manually deactivated and is only able to be reactivated by an administrator.',
|
'ACCOUNT_DEACTIVATED' => 'Your account has been manually deactivated and is only able to be reactivated by an administrator.',
|
||||||
'ACP' => 'Administration Control Panel',
|
'ACP' => 'Administration Control Panel',
|
||||||
'ACP_SHORT' => 'ACP',
|
'ACP_SHORT' => 'ACP',
|
||||||
|
'ACTIVATION_ALREADY_SENT' => 'The activation email has already been sent to your email address. You can try again after 24 hours. If you continue to have problems activating your account, please contact a board administrator.',
|
||||||
'ACTIVE' => 'active',
|
'ACTIVE' => 'active',
|
||||||
'ACTIVE_ERROR' => 'The specified username is currently inactive. If you have problems activating your account, please contact a board administrator.',
|
'ACTIVE_ERROR' => 'The specified username is currently inactive. If you have problems activating your account, please contact a board administrator.',
|
||||||
'ADMINISTRATOR' => 'Administrator',
|
'ADMINISTRATOR' => 'Administrator',
|
||||||
|
|
Loading…
Add table
Reference in a new issue