@@ -, +, @@ --- catalogue/detail.pl | 2 ++ .../intranet-tmpl/prog/en/modules/catalogue/detail.tt | 16 +++++++++++++--- 2 files changed, 15 insertions(+), 3 deletions(-) --- a/catalogue/detail.pl +++ a/catalogue/detail.pl @@ -534,6 +534,8 @@ foreach my $myorder (@allorders_using_biblio) { } } +$template->param(biblio => $biblio); + my $count_orders_using_biblio = scalar @orders_using_biblio ; $template->param (countorders => $count_orders_using_biblio); --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt @@ -69,8 +69,14 @@ [% END %] - [% IF ( AmazonCoverImages || LocalCoverImages || AdlibrisEnabled ) %] -
+ [% IF ( AmazonCoverImages || LocalCoverImages || AdlibrisEnabled || (Koha.Preference('CustomCoverImages') && Koha.Preference('CustomCoverImagesURL')) ) %] + [% IF ( XSLTDetailsDisplay ) %] +
+
+ [% ELSE %] +
+
+ [% END %] [% ELSE %]
[% END %] @@ -121,7 +127,7 @@ [% END %] - [% IF ( AmazonCoverImages || LocalCoverImages || AdlibrisEnabled ) %] + [% IF ( AmazonCoverImages || LocalCoverImages || AdlibrisEnabled || (Koha.Preference('CustomCoverImages') && Koha.Preference('CustomCoverImagesURL')) ) %]
[% IF ( LocalCoverImages ) %]
@@ -135,6 +141,10 @@
[% END %] + + [% IF Koha.Preference('CustomCoverImages') && Koha.Preference('CustomCoverImagesURL') %] + Cover image + [% END %] [% END %]
--