X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=blobdiff_plain;f=members%2Fmancredit.pl;h=88200d0e20b6a99b4010f65d3a2007391119e3fb;hb=91fa5f9bbd89a4cb63a69bf0c87b3272fcb6ebf5;hp=801fcc2868f9799b417c6cebc2a6be8457ca711b;hpb=05be38d438c242496a5c205fffefcfbdfdb63d46;p=koha_fer diff --git a/members/mancredit.pl b/members/mancredit.pl index 801fcc2868..88200d0e20 100755 --- a/members/mancredit.pl +++ b/members/mancredit.pl @@ -78,7 +78,14 @@ if ($add){ $template->param( adultborrower => 1 ) if ( $data->{category_type} eq 'A' ); my ($picture, $dberror) = GetPatronImage($data->{'cardnumber'}); $template->param( picture => 1 ) if $picture; + +if (C4::Context->preference('ExtendedPatronAttributes')) { my $attributes = GetBorrowerAttributes($borrowernumber); + $template->param( + ExtendedPatronAttributes => 1, + extendedattributes => $attributes + ); +} $template->param( borrowernumber => $borrowernumber, @@ -99,7 +106,7 @@ if ($add){ branchcode => $data->{'branchcode'}, branchname => GetBranchName($data->{'branchcode'}), is_child => ($data->{'category_type'} eq 'C'), - extendedattributes => $attributes, + activeBorrowerRelationship => (C4::Context->preference('borrowerRelationship') ne ''), ); output_html_with_http_headers $input, $cookie, $template->output; }