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

(-)a/members/memberentry.pl (+2 lines)
Lines 109-115 $template->param( relationships => scalar $patron->guarantor_relationships ) if Link Here
109
109
110
my @relations = split /\|/, C4::Context->preference('borrowerRelationship'), -1;
110
my @relations = split /\|/, C4::Context->preference('borrowerRelationship'), -1;
111
@relations = ('') unless @relations;
111
@relations = ('') unless @relations;
112
warn Data::Dumper::Dumper( \@relations );
112
my $empty_relationship_allowed = grep {$_ eq ""} @relations;
113
my $empty_relationship_allowed = grep {$_ eq ""} @relations;
114
warn $empty_relationship_allowed;
113
$template->param( empty_relationship_allowed => $empty_relationship_allowed );
115
$template->param( empty_relationship_allowed => $empty_relationship_allowed );
114
116
115
my $guarantor_id = $input->param('guarantor_id');
117
my $guarantor_id = $input->param('guarantor_id');
(-)a/t/db_dependent/Biblio.t (-1 / +1 lines)
Lines 246-251 sub run_tests { Link Here
246
    # Authority tests don't interact well with Elasticsearch at the moment due to the fact that there's currently no way to
246
    # Authority tests don't interact well with Elasticsearch at the moment due to the fact that there's currently no way to
247
    # roll back ES index changes.
247
    # roll back ES index changes.
248
    t::lib::Mocks::mock_preference('SearchEngine', 'Zebra');
248
    t::lib::Mocks::mock_preference('SearchEngine', 'Zebra');
249
    t::lib::Mocks::mock_preference('autoControlNumber', 'OFF');
249
250
250
    my $isbn = '0590353403';
251
    my $isbn = '0590353403';
251
    my $title = 'Foundation';
252
    my $title = 'Foundation';
252
- 

Return to bug 27981