Lines 100-108
my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
Link Here
|
100 |
} |
100 |
} |
101 |
); |
101 |
); |
102 |
|
102 |
|
|
|
103 |
my ($bt_tag,$bt_subtag) = GetMarcFromKohaField('biblio.title',$itemtype); |
103 |
$template->param( |
104 |
$template->param( |
104 |
bibliotitle => $biblio->{title}, |
105 |
bibliotitle => $biblio->{title}, |
105 |
); |
106 |
) if $tagslib->{$bt_tag}->{$bt_subtag}->{hidden} <= 0; #<=0 is OPAC visible. |
106 |
|
107 |
|
107 |
# get biblionumbers stored in the cart |
108 |
# get biblionumbers stored in the cart |
108 |
if(my $cart_list = $query->cookie("bib_list")){ |
109 |
if(my $cart_list = $query->cookie("bib_list")){ |
109 |
- |
|
|