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

kenorb’s picture

That's true.
Tested and it's working.

starbow’s picture

Status: Patch (to be ported) » Reviewed & tested by the community
starbow’s picture

Status: Reviewed & tested by the community » Fixed

Fixed in beta3

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.