28 May
2026
28 May
'26
4:48 p.m.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41566 --- Comment #25 from Jonathan Druart <jonathan.druart@gmail.com> --- (In reply to Andrii Nugged from comment #24)
+ noItemTypeImages: [% Koha.Preference('noItemTypeImages') ? 1 : 0 | html %],
- [% UNLESS noItemTypeImages %] + if (prefs.noItemTypeImages){ let image_location = item_type_image_locations[row.item_type_id]; node += image_location ? '<img class="itemtype-image" ... /> ' : ''; - [% END %] + }
should it be inverted? I.e.:
if (!Koha.prefs.noItemTypeImages) {
?
Oops (again), yes definitely, thanks! See bug 42708. -- You are receiving this mail because: You are watching all bug changes.