View | Details | Raw Unified | Return to bug 22445
Collapse All | Expand All

(-)a/catalogue/detail.pl (+2 lines)
Lines 534-539 foreach my $myorder (@allorders_using_biblio) { Link Here
534
    }
534
    }
535
}
535
}
536
536
537
$template->param(biblio => $biblio);
538
537
my $count_orders_using_biblio = scalar @orders_using_biblio ;
539
my $count_orders_using_biblio = scalar @orders_using_biblio ;
538
$template->param (countorders => $count_orders_using_biblio);
540
$template->param (countorders => $count_orders_using_biblio);
539
541
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt (-3 / +6 lines)
Lines 68-74 Link Here
68
        <span class="Z3988" title="[% ocoins | html %]"></span>
68
        <span class="Z3988" title="[% ocoins | html %]"></span>
69
    [% END %]
69
    [% END %]
70
70
71
    [% IF ( AmazonCoverImages  || LocalCoverImages || AdlibrisEnabled ) %]
71
    [% IF ( AmazonCoverImages  || LocalCoverImages || AdlibrisEnabled || (Koha.Preference('CustomCoverImages') && Koha.Preference('CustomCoverImagesURL')) ) %]
72
        [% IF ( XSLTDetailsDisplay ) %]
72
        [% IF ( XSLTDetailsDisplay ) %]
73
            <div class="yui-gc">
73
            <div class="yui-gc">
74
            <div id="catalogue_detail_biblio" class="yui-u first">
74
            <div id="catalogue_detail_biblio" class="yui-u first">
Lines 133-139 Link Here
133
            </span>
133
            </span>
134
        [% END %]
134
        [% END %]
135
135
136
        [% IF ( AmazonCoverImages  || LocalCoverImages || AdlibrisEnabled ) %]
136
        [% IF ( AmazonCoverImages  || LocalCoverImages || AdlibrisEnabled || (Koha.Preference('CustomCoverImages') && Koha.Preference('CustomCoverImagesURL')) ) %]
137
        </div><div class="yui-u" id="bookcoverimg">
137
        </div><div class="yui-u" id="bookcoverimg">
138
        [% IF ( LocalCoverImages ) %]
138
        [% IF ( LocalCoverImages ) %]
139
            <div title="[% biblionumber |url %]" class="[% biblionumber | html %]" id="local-thumbnail-preview"></div>
139
            <div title="[% biblionumber |url %]" class="[% biblionumber | html %]" id="local-thumbnail-preview"></div>
Lines 147-152 Link Here
147
                <img src="https://images-na.ssl-images-amazon.com/images/P/[% normalized_isbn | html %].01.MZZZZZZZ.jpg" alt="" />
147
                <img src="https://images-na.ssl-images-amazon.com/images/P/[% normalized_isbn | html %].01.MZZZZZZZ.jpg" alt="" />
148
        </a></div>
148
        </a></div>
149
        [% END %]
149
        [% END %]
150
151
        [% IF Koha.Preference('CustomCoverImages') && Koha.Preference('CustomCoverImagesURL') %]
152
            <a href="[% biblio.custom_cover_image_url | url %]"><img alt="Cover image" src="[% biblio.custom_cover_image_url | url %]" />
153
        [% END %]
150
        [% END %]
154
        [% END %]
151
    [% ELSE %]
155
    [% ELSE %]
152
156
153
- 

Return to bug 22445