Summary: | patron login gets an initial dot added when no first name | ||
---|---|---|---|
Product: | Koha | Reporter: | Fernando L. Canizo <conan> |
Component: | Patrons | Assignee: | Fernando L. Canizo <conan> |
Status: | CLOSED FIXED | QA Contact: | Bugs List <koha-bugs> |
Severity: | minor | ||
Priority: | PATCH-Sent (DO NOT USE) | CC: | chris, f.demians, gmcharlt, koha.sekjal |
Version: | 3.4 | ||
Hardware: | All | ||
OS: | All | ||
Change sponsored?: | --- | Patch complexity: | --- |
Documentation contact: | Documentation submission: | ||
Text to go in the release notes: | Version(s) released in: | ||
Circulation function: | |||
Bug Depends on: | |||
Bug Blocks: | 3674 | ||
Attachments: | fix Member.pm |
Description
Fernando L. Canizo
2011-04-20 15:15:26 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; } Created attachment 3960 [details] [review] fix Member.pm Now it chooses surname if firstname is blank, no dots added. It behaves the same if both are provided. This patch can be verified by reading the code. Marking as Passed QA. Merged to master please test |