Closed (fixed)
Project:
Generate Password
Version:
6.x-1.0-beta1
Component:
Code
Priority:
Critical
Category:
Bug report
Assigned:
Reporter:
Created:
10 Oct 2008 at 06:34 UTC
Updated:
29 Oct 2008 at 18:22 UTC
I have found a bug on admin interface regarding the password length setting.
On row 125 of genpass.module you write:
if(is_numeric($length) && $length >= 5 && $length <= 32) variable_set('genpass_length', $mode);
instead of:
if(is_numeric($length) && $length >= 5 && $length <= 32) variable_set('genpass_length', $length);
Regards,
Saxx
Comments
Comment #1
kenorb commentedThat's true.
Tested and it's working.
Comment #2
starbow commentedComment #3
starbow commentedFixed in beta3
Comment #4
Anonymous (not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.