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

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt (+5 lines)
Lines 55-60 Link Here
55
                <div id="catalogue_detail_biblio" class="maincontent">
55
                <div id="catalogue_detail_biblio" class="maincontent">
56
56
57
                    <div id="bookcover">
57
                    <div id="bookcover">
58
                    [% IF ( BDSOpacEnable ) %]
59
                    <a href="http://www.bibdsl.co.uk/xmla/image-service.asp?ISBN=[% normalized_isbn %]&SIZE=l&DBM=[% DBMCode %]" />
60
                    <img src="http://www.bibdsl.co.uk/xmla/image-service.asp?ISBN=[% normalized_isbn %]&SIZE=s&DBM=[% DBMCode %]" />
61
                    </a>
62
                    [% END %]
58
                    [% IF ( OPACLocalCoverImages ) %]
63
                    [% IF ( OPACLocalCoverImages ) %]
59
                        <div title="[% biblionumber |url %]" class="[% biblionumber %]" id="local-thumbnail-preview"></div>
64
                        <div title="[% biblionumber |url %]" class="[% biblionumber %]" id="local-thumbnail-preview"></div>
60
                    [% END %]
65
                    [% END %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-results.tt (+4 lines)
Lines 227-232 Link Here
227
                                                        [% IF ( OPACLocalCoverImages ) %]
227
                                                        [% IF ( OPACLocalCoverImages ) %]
228
                                                            <span title="[% SEARCH_RESULT.biblionumber |url %]" class="[% SEARCH_RESULT.biblionumber %]" id="local-thumbnail[% loop.count %]"></span>
228
                                                            <span title="[% SEARCH_RESULT.biblionumber |url %]" class="[% SEARCH_RESULT.biblionumber %]" id="local-thumbnail[% loop.count %]"></span>
229
                                                        [% END %]
229
                                                        [% END %]
230
                                                        [% IF ( BDSOpacEnable ) %]
231
                                                         <span title="[% SEARCH_RESULT.biblionumber |url %]" class="[% SEARCH_RESULT.biblionumber %]" id="bds-thumbnail[% loop.count %]"></span>
232
                                                         <img src="http://www.bibdsl.co.uk/xmla/image-service.asp?ISBN=[% SEARCH_RESULT.normalized_isbn %]&SIZE=s&DBM=[% (DBMCode) %]" />
233
                                                        [% END %]
230
                                                        [% IF ( OPACAmazonCoverImages ) %]
234
                                                        [% IF ( OPACAmazonCoverImages ) %]
231
                                                            [% IF ( SEARCH_RESULT.normalized_isbn ) %]
235
                                                            [% IF ( SEARCH_RESULT.normalized_isbn ) %]
232
                                                                    <span title="[% SEARCH_RESULT.biblionumber %]" id="amazon-thumbnail[% loop.count %]"><img src="https://images-na.ssl-images-amazon.com/images/P/[% SEARCH_RESULT.normalized_isbn %].01.TZZZZZZZ.jpg" alt="" class="item-thumbnail" /></span>
236
                                                                    <span title="[% SEARCH_RESULT.biblionumber %]" id="amazon-thumbnail[% loop.count %]"><img src="https://images-na.ssl-images-amazon.com/images/P/[% SEARCH_RESULT.normalized_isbn %].01.TZZZZZZZ.jpg" alt="" class="item-thumbnail" /></span>
(-)a/opac/opac-detail.pl (+7 lines)
Lines 1021-1026 $template->param(NovelistSelectPassword => C4::Context->preference('NovelistSele Link Here
1021
$template->param(NovelistSelectView => C4::Context->preference('NovelistSelectView') ); 
1021
$template->param(NovelistSelectView => C4::Context->preference('NovelistSelectView') ); 
1022
} 
1022
} 
1023
1023
1024
# BDS Cover images
1025
if( C4::Context->preference('BDSOpacEnable') )
1026
{
1027
$template->param(DBMCode =>
1028
C4::Context->preference('DBMCode') );
1029
}
1030
1024
1031
1025
# Babelthèque
1032
# Babelthèque
1026
if ( C4::Context->preference("Babeltheque") ) {
1033
if ( C4::Context->preference("Babeltheque") ) {
(-)a/opac/opac-search.pl (-1 / +6 lines)
Lines 165-170 if (C4::Context->preference('BakerTaylorEnabled')) { Link Here
165
    );
165
    );
166
}
166
}
167
167
168
if (C4::Context->preference('BDSOpacEnable')) {
169
$template->param(DBMCode =>
170
C4::Context->preference('DBMCode'), );
171
}
172
173
168
if (C4::Context->preference('TagsEnabled')) {
174
if (C4::Context->preference('TagsEnabled')) {
169
    $template->param(TagsEnabled => 1);
175
    $template->param(TagsEnabled => 1);
170
    foreach (qw(TagsShowOnList TagsInputOnList)) {
176
    foreach (qw(TagsShowOnList TagsInputOnList)) {
171
- 

Return to bug 19044