X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=members%2Freadingrec.pl;h=8c0cd6f3f1af8388899353b4955794450cb70b01;hb=440c0f21ee59664bfbd2238c638f84a6af3d9d80;hp=e7586a0debe4b020eb530538f064f046e1d59574;hpb=97446f86ced2c2d6d4d7a11b97ed81a5a0a25d95;p=koha.git diff --git a/members/readingrec.pl b/members/readingrec.pl index e7586a0deb..8c0cd6f3f1 100755 --- a/members/readingrec.pl +++ b/members/readingrec.pl @@ -32,6 +32,7 @@ use C4::Branch; use List::MoreUtils qw/any/; use C4::Dates qw/format_date/; +use C4::Members::Attributes qw(GetBorrowerAttributes); my $input = CGI->new; @@ -96,6 +97,14 @@ if (! $limit){ 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( readingrecordview => 1, biblionumber => $data->{'biblionumber'}, @@ -122,7 +131,8 @@ $template->param( is_child => ($data->{'category_type'} eq 'C'), branchname => GetBranchName($data->{'branchcode'}), showfulllink => (scalar @loop_reading > 50), - loop_reading => \@loop_reading); + loop_reading => \@loop_reading, +); output_html_with_http_headers $input, $cookie, $template->output;