View | Details | Raw Unified | Return to bug 15182
Collapse All | Expand All

(-)a/C4/Members.pm (-2 / +5 lines)
Lines 40-46 use Koha::Borrower::Debarments qw(IsDebarred); Link Here
40
use Text::Unaccent qw( unac_string );
40
use Text::Unaccent qw( unac_string );
41
use Koha::AuthUtils qw(hash_password);
41
use Koha::AuthUtils qw(hash_password);
42
use Koha::Database;
42
use Koha::Database;
43
require Koha::NorwegianPatronDB;
43
44
use Module::Load::Conditional qw( can_load );
45
if ( ! can_load( modules => { 'Koha::NorwegianPatronDB' => undef } ) ) {
46
   warn "Unable to load Koha::NorwegianPatronDB";
47
}
44
48
45
our ($VERSION,@ISA,@EXPORT,@EXPORT_OK,$debug);
49
our ($VERSION,@ISA,@EXPORT,@EXPORT_OK,$debug);
46
50
47
- 

Return to bug 15182