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