How can i delete the captcha question from the forgot.php (or missing password sequence)`?
How can i delete the captcha question from the forgot.php (or missing password sequence)`? |
Hello mrtn!
You need to delete / comment the following code in the forgot.php file:
array(
'type' => 'captcha',
'name' => 'captcha',
'caption' => _t('_Enter Captcha'),
'required' => true,
'checker' => array(
'func' => 'captcha',
'error' => _t( '_Incorrect Captcha' ),
),
),
|