http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13502

--- Comment #1 from Chris Cormack <[email protected]> ---
This is because we do this

sub Check_Userid {
    my ( $uid, $borrowernumber ) = @_;

    return 1 unless ($uid);


And 1 means unique .. so we do Check_Userid ... it tells us, yes its unique .. 


This is wrong we should return 0 here. If it is empty, assume it is non unique.

This is a change in behaviour introduced by 1861.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
_______________________________________________
Koha-bugs mailing list
[email protected]
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to