https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27248

Jonathan Druart <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|Signed Off                  |Failed QA
                 CC|                            |[email protected]

--- Comment #25 from Jonathan Druart <[email protected]> ---
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.
_______________________________________________
Koha-bugs mailing list
[email protected]
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to