From 736e80e3253ea8b0c1773b699a7a552c860d4ea4 Mon Sep 17 00:00:00 2001 From: Amit Gupta Date: Tue, 24 Jul 2018 14:05:21 +0530 Subject: [PATCH] Bug 21110 - Undefined subroutine &main::checkcardnumber installer/onboarding.pl Test: 1. Install the Koha and run ../cgi-bin/koha/installer/onboarding.pl 2. You can see Undefined subroutine &main::checkcardnumber while creating the member. 3. Apply the patch and rerun /cgi-bin/koha/installer/onboarding.pl now you can able to create member. --- installer/onboarding.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/installer/onboarding.pl b/installer/onboarding.pl index f8bd84e..0b27bb4 100755 --- a/installer/onboarding.pl +++ b/installer/onboarding.pl @@ -22,6 +22,7 @@ use C4::Context; use C4::InstallAuth; use CGI qw ( -utf8 ); use C4::Output; +use C4::Members; use Koha::Patrons; use Koha::Libraries; use Koha::Database; -- 2.7.4