Lines 109-114
for my $result (@$reviews){
Link Here
|
109 |
$result->{notes} = $biblioitem->notes; |
109 |
$result->{notes} = $biblioitem->notes; |
110 |
$result->{timestamp} = $biblioitem->timestamp; |
110 |
$result->{timestamp} = $biblioitem->timestamp; |
111 |
|
111 |
|
|
|
112 |
$result->{biblio_object} = $biblio; # TODO Use this variable directly in the template |
113 |
|
112 |
my $patron = Koha::Patrons->find( $result->{borrowernumber} ); |
114 |
my $patron = Koha::Patrons->find( $result->{borrowernumber} ); |
113 |
if ( $patron ) { |
115 |
if ( $patron ) { |
114 |
$result->{borrtitle} = $patron->title; |
116 |
$result->{borrtitle} = $patron->title; |
115 |
- |
|
|