Closed (fixed)
Project:
Fancy Login
Version:
6.x-1.7
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
8 Jan 2012 at 13:32 UTC
Updated:
19 Feb 2014 at 08:30 UTC
Jump to comment: Most recent
Even with "No Request New Password" module enabled.
Comments
Comment #1
rmcom commentedComment #2
rmcom commentedThis is due to a wrong parameter in line 173 of the code:
It currently is:
if(!module_exists('noreqnewpass') || !variable_get('noreqnewpass_disabled', FALSE))
It should be/works with:
if(!module_exists('noreqnewpass') || !variable_get('noreqnewpass_disabled', TRUE))
Comment #3
rmcom commentedIssue fixed above, please commit to new version.
Comment #4
jaypanI've backported 7.x-3.0 to D6, as the 6.x-2.x branch. As the method was a complete overhaul, rather than an upgrade of the 6.x-1.x branch, patches will not work. I believe that due to the methods I used in building this branch, the problem you were having should not be an issue. Please upgrade and test. If the problem still remains, please re-open this issue and update the version to 6.x-2.x.