13 Dec
2018
13 Dec
'18
8:02 p.m.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19489 --- Comment #16 from Jonathan Druart <jonathan.druart@bugs.koha-community.org> --- 2. As well, the html filter is not needed when already KohaDates filtered. 3. in printinvoice.pl +$accountline->{'item'} = $accountline->{itemnumber} ? $accountline_object->item : "" ; +$accountline->{'issue'} = $accountline->{issue_id} ? $accountline_object->issue : "" ; It read wrong, why not: $accountline->{item} = $accountline_object->item || "" ; $accountline->{issue} = $accountline_object->issue || ""; ? -- You are receiving this mail because: You are watching all bug changes.