@@ -, +, @@ --- circ/pendingreserves.pl | 2 ++ koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt | 1 + 2 files changed, 3 insertions(+) --- a/circ/pendingreserves.pl +++ a/circ/pendingreserves.pl @@ -201,6 +201,7 @@ my $strsth = GROUP_CONCAT(DISTINCT items.copynumber ORDER BY items.itemnumber SEPARATOR '|') l_copynumber, biblio.title, + biblio.copyrightdate, biblio.subtitle, biblio.medium, biblio.part_number, @@ -271,6 +272,7 @@ while ( my $data = $sth->fetchrow_hashref ) { holdingbranch => $data->{holdingbranch}, homebranch => $data->{homebranch}, itemnumber => $data->{itemnumber}, + copyrightdate => $data->{copyrightdate}, } ); } --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt @@ -80,6 +80,7 @@ [% INCLUDE 'biblio-title.inc' biblio=reserveloo %]

[% IF ( reserveloo.author ) %]

by [% reserveloo.author | html %]

[% END %] + [% IF ( reserveloo.copyrightdate ) %]

[% reserveloo.copyrightdate | html %]

[% END %] [% ELSE %] " --