X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=members%2Freadingrec.pl;h=b4fb8a7d9c0aaf073ec1c151d2d09e10a30719ec;hb=d019b4c63aa46f5eaad044178b5489aee0491ab1;hp=e7586a0debe4b020eb530538f064f046e1d59574;hpb=77167b3b17690ccff682d410847b13aa5ac186e8;p=koha.git diff --git a/members/readingrec.pl b/members/readingrec.pl index e7586a0deb..b4fb8a7d9c 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,12 +97,21 @@ 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'}, title => $data->{'title'}, initials => $data->{'initials'}, surname => $data->{'surname'}, + othernames => $data->{'othernames'}, borrowernumber => $borrowernumber, limit => $limit, firstname => $data->{'firstname'}, @@ -122,7 +132,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;