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

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt (+5 lines)
Lines 1558-1563 Link Here
1558
                    } else {
1558
                    } else {
1559
                        div.remove();
1559
                        div.remove();
1560
                    }
1560
                    }
1561
1562
                    // Optionally hide the Lightbox image descriptions
1563
                    [% IF ( !OpacLightboxImageDescriptions ) %]
1564
                        div.find(".hint").hide();
1565
                    [% END %]
1561
                });
1566
                });
1562
1567
1563
                // Lightbox for cover images
1568
                // Lightbox for cover images
(-)a/opac/opac-detail.pl (-1 / +4 lines)
Lines 1163-1168 if (C4::Context->preference("OPACURLOpenInNewWindow")) { Link Here
1163
    $template->param(covernewwindow => 'false');
1163
    $template->param(covernewwindow => 'false');
1164
}
1164
}
1165
1165
1166
if (C4::Context->preference("OpacLightboxImageDescriptions")) {
1167
    $template->param( OpacLightboxImageDescriptions => 1 );
1168
}
1169
1166
$template->param(borrowernumber => $borrowernumber);
1170
$template->param(borrowernumber => $borrowernumber);
1167
1171
1168
if ( C4::Context->preference('OpacStarRatings') !~ /disable/ ) {
1172
if ( C4::Context->preference('OpacStarRatings') !~ /disable/ ) {
1169
- 

Return to bug 31446