|
Lines 259-265
if ( $op eq 'view' ) {
Link Here
|
| 259 |
} |
259 |
} |
| 260 |
|
260 |
|
| 261 |
my $marcflavour = C4::Context->preference("marcflavour"); |
261 |
my $marcflavour = C4::Context->preference("marcflavour"); |
| 262 |
my $itemtypeinfo = getitemtypeinfo( $content->biblionumber->biblioitems->first->itemtype, 'intranet' ); |
262 |
my $itemtypeinfo = getitemtypeinfo( $content->biblionumber->biblioitems->first->itemtype, 'opac' ); |
| 263 |
$this_item->{imageurl} = $itemtypeinfo->{imageurl}; |
263 |
$this_item->{imageurl} = $itemtypeinfo->{imageurl}; |
| 264 |
$this_item->{description} = $itemtypeinfo->{description}; |
264 |
$this_item->{description} = $itemtypeinfo->{description}; |
| 265 |
$this_item->{notforloan} = $itemtypeinfo->{notforloan}; |
265 |
$this_item->{notforloan} = $itemtypeinfo->{notforloan}; |
| 266 |
- |
|
|