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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/results.tt (-3 / +6 lines)
Lines 376-382 Link Here
376
                                <!-- TABLE RESULTS START -->
376
                                <!-- TABLE RESULTS START -->
377
                                <table>
377
                                <table>
378
                                    <tr>
378
                                    <tr>
379
                                        [% IF ( AmazonCoverImages || LocalCoverImages || AdlibrisEnabled ) %]
379
                                        [% IF ( AmazonCoverImages  || LocalCoverImages || AdlibrisEnabled || (Koha.Preference('CustomCoverImages') && Koha.Preference('CustomCoverImagesURL')) ) %]
380
                                            <th>&nbsp;</th>
380
                                            <th>&nbsp;</th>
381
                                        [% END %]
381
                                        [% END %]
382
                                        <th colspan="2">Results</th>
382
                                        <th colspan="2">Results</th>
Lines 386-392 Link Here
386
                                    [% SET MaxSearchResultsItemsPerRecordStatusCheck = Koha.Preference('MaxSearchResultsItemsPerRecordStatusCheck') %]
386
                                    [% SET MaxSearchResultsItemsPerRecordStatusCheck = Koha.Preference('MaxSearchResultsItemsPerRecordStatusCheck') %]
387
                                    [% FOREACH SEARCH_RESULT IN SEARCH_RESULTS %]
387
                                    [% FOREACH SEARCH_RESULT IN SEARCH_RESULTS %]
388
                                        <tr>
388
                                        <tr>
389
                                            [% IF ( AmazonCoverImages || LocalCoverImages || AdlibrisEnabled || IntranetCoce ) %]
389
                                            [% IF ( AmazonCoverImages  || LocalCoverImages || AdlibrisEnabled || IntranetCoce || (Koha.Preference('CustomCoverImages') && Koha.Preference('CustomCoverImagesURL')) ) %]
390
                                                <td>
390
                                                <td>
391
                                                    [% IF ( LocalCoverImages) %]
391
                                                    [% IF ( LocalCoverImages) %]
392
                                                        <a class="p1" href="/cgi-bin/koha/catalogue/[% DetailPage | html %]?biblionumber=[% SEARCH_RESULT.biblionumber |url %]">
392
                                                        <a class="p1" href="/cgi-bin/koha/catalogue/[% DetailPage | html %]?biblionumber=[% SEARCH_RESULT.biblionumber |url %]">
Lines 416-421 Link Here
416
                                                        [% END %]
416
                                                        [% END %]
417
                                                            </a>
417
                                                            </a>
418
                                                    [% END %]
418
                                                    [% END %]
419
420
                                                    [% IF Koha.Preference('CustomCoverImages') && Koha.Preference('CustomCoverImagesURL') %]
421
                                                        <a href="[% SEARCH_RESULT.biblio_object.custom_cover_image_url | url %]"><img alt="Cover image" src="[% SEARCH_RESULT.biblio_object.custom_cover_image_url | url %]" />
422
                                                    [% END %]
419
                                                </td>
423
                                                </td>
420
                                            [% END # /IF( AmazonCoverImages || LocalCoverImages || AdlibrisEnabled || IntranetCoce )%]
424
                                            [% END # /IF( AmazonCoverImages || LocalCoverImages || AdlibrisEnabled || IntranetCoce )%]
421
425
422
- 

Return to bug 22445