http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6218 Owen Leonard <oleonard@myacpl.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|enhancement |minor --- Comment #1 from Owen Leonard <oleonard@myacpl.org> 2011-04-20 15:31:13 UTC --- In Members.pm: sub Generate_Userid { my ($borrowernumber, $firstname, $surname) = @_; my $newuid; my $offset = 0; do { $firstname =~ s/[[:digit:][:space:][:blank:][:punct:][:cntrl:]]//g; $surname =~ s/[[:digit:][:space:][:blank:][:punct:][:cntrl:]]//g; $newuid = lc("$firstname.$surname"); $newuid .= $offset unless $offset == 0; $offset++; } while (!Check_Userid($newuid,$borrowernumber)); return $newuid; } -- Configure bugmail: http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA Contact for the bug.