http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10625
--- Comment #14 from Jonathan Druart <[email protected]> --- Comment on attachment 37848 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=37848 [Signed-off] Bug 10625: Inventory/Stocktaking tool cannot handle windows file uploads Review of attachment 37848: --> (http://bugs.koha-community.org/bugzilla3/page.cgi?id=splinter.html&bug=10625&attachment=37848) ----------------------------------------------------------------- ::: tools/inventory.pl @@ +173,5 @@ > + while (my $barcode=<$uploadbarcodes>) { > + $barcode =~ s/\r/\n/g; > + $barcode =~ s/\n\n/\n/g; > + $barcode =~ s/\n$//; > + $barcode =~ s/^\n//; why not $barcode =~ s/\n//g; to replace the last 3 lines? -- You are receiving this mail because: You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] http://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/
