13 lines
538 B
PHP
13 lines
538 B
PHP
<?php
|
|
$lv = !$langBully ? "lang" : "bully";
|
|
${$lv}['forgotPass'] = array(
|
|
'spambot' => "Security Code:",
|
|
'error_code' => "Either no security code was entered or it did not match the characters in the image.",
|
|
'forgot_pass' => "Forgotten Password",
|
|
'email' => "Email:",
|
|
'send_pass' => "Send Password",
|
|
'new_pass_sent' => "A new password has been sent to %s.",
|
|
'email_not_found' => "Sorry but that email address was not found.",
|
|
'enter_email' => "Please enter your login email address below to have a temporary password sent to you:"
|
|
);
|
|
?>
|