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

(-)a/opac/opac-memberentry.pl (-2 / +1 lines)
Lines 75-81 if ( $action eq q{} ) { Link Here
75
75
76
my $mandatory = GetMandatoryFields($action);
76
my $mandatory = GetMandatoryFields($action);
77
77
78
my $params = undef;
78
my $params = {};
79
if ( $action eq 'create' || $action eq 'new' ) {
79
if ( $action eq 'create' || $action eq 'new' ) {
80
    my @PatronSelfRegistrationLibraryList = split '\|', C4::Context->preference('PatronSelfRegistrationLibraryList');
80
    my @PatronSelfRegistrationLibraryList = split '\|', C4::Context->preference('PatronSelfRegistrationLibraryList');
81
    $params = { branchcode => { -in => \@PatronSelfRegistrationLibraryList } };
81
    $params = { branchcode => { -in => \@PatronSelfRegistrationLibraryList } };
82
- 

Return to bug 27604