Bug 17080: Make C4::Members::AddMember uses Koha::Patron->store
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Mon, 8 Aug 2016 13:12:09 +0000 (14:12 +0100)
committerKyle M Hall <kyle@bywatersolutions.com>
Fri, 21 Oct 2016 17:33:18 +0000 (17:33 +0000)
commit41a19f420d94427d6d69235732021e6f9ba78611
tree08cb2d0fd581daccbb7c6dd2214cca64240dfabd
parent0d364dacf6db4b6c4442a264fff4d9de925ab6b2
Bug 17080: Make C4::Members::AddMember uses Koha::Patron->store

These calls have been added from commit e196f19 (Bug 12633: Remove SQLHelper
in C4::Members) which added a TODO:
"This patch replaced the calls to SQLHelper to use DBIX::Class.
TODO: Move them to Koha::Borrower."

This is now done by this patch: instead of calling DBIx::Class directly
we use Koha::Patron

Signed-off-by: Marc VĂ©ron <veron@veron.ch>
Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
C4/Members.pm