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 230-235 sub run_tests { Link Here
230
230
231
    my $marcflavour = shift;
231
    my $marcflavour = shift;
232
    t::lib::Mocks::mock_preference('marcflavour', $marcflavour);
232
    t::lib::Mocks::mock_preference('marcflavour', $marcflavour);
233
    t::lib::Mocks::mock_preference('autoControlNumber', 'OFF');
233
234
234
    my $isbn = '0590353403';
235
    my $isbn = '0590353403';
235
    my $title = 'Foundation';
236
    my $title = 'Foundation';
236
- 

Return to bug 27981