Log in

View Full Version : Email Password Reminder To User


Capper5016
10-28-2008, 12:26 AM
I've been trying to use the Email Password Reminder to User feature in the Admin CPto send a user his password, each time I do, I get the following error:

vBulletin Message The string you entered for the image verification did not match what was displayed.


.

I'm using the built in reCAPTCHA Verification system, and have a public and private key.......does anyone have any idea what would be causing my problem?

ForumsMods
10-28-2008, 12:47 AM
It is a bug, you can fix it doing this:
In login.php search:
if ($vbulletin->options['hvcheck_lostpw'])
It is twice.
And replace with:
if ($vbulletin->options['hvcheck_lostpw'] AND !($permissions['adminpermissions'] & $vbulletin->bf_ugp_adminpermissions['cancontrolpanel']))

Webcams
07-12-2009, 07:14 PM
It is a bug, you can fix it doing this:
In login.php search:
if ($vbulletin->options['hvcheck_lostpw'])
It is twice.
And replace with:
if ($vbulletin->options['hvcheck_lostpw'] AND !($permissions['adminpermissions'] & $vbulletin->bf_ugp_adminpermissions['cancontrolpanel']))


Thank You for the Fix !
Problem corrected immediately. :)