https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27248 Jonathan Druart <jonathan.druart@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Failed QA CC| |jonathan.druart@gmail.com --- Comment #25 from Jonathan Druart <jonathan.druart@gmail.com> --- 1. Textarea contains some spaces, try using ~ instead of - for chomping - [%- FOREACH item IN items %] + [%~ FOREACH item IN items %] [%- item.barcode | html -%] - [% END -%] + [% END ~%] 2. If you select item type and barcode it won't work as expected, the `itemnumber` key of $search_params will be replaced: 82 $search_params->{'itemnumber'} = { -in => \@itemnumbers }; 104 $search_params->{'itemnumber'} = { -in => \@itemnumbers }; 3. - <td data-order="[% new_due_dates.shift | html %]"> [% new_due_dates.shift | $KohaDates as_due_date => 1 %] </td> + <td data-order="[% new_due_dates.0 | html %]"> [% new_due_dates.shift | $KohaDates as_due_date => 1 %] </td> Good catch. A bit confusing but it's working. It's a bug from bug 39081, we should have a dedicated bug report for backport purpose. Not blocker however. -- You are receiving this mail because: You are watching all bug changes.