https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7317 --- Comment #218 from David Cook <dcook@prosentient.com.au> --- Comment on attachment 68560 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=68560 Bug 7317: Interlibrary loans framework for Koha. Review of attachment 68560: --> (https://bugs.koha-community.org/bugzilla3/page.cgi?id=splinter.html&bug=7317&attachment=68560) ----------------------------------------------------------------- ::: Koha/Illrequest.pm @@ +838,5 @@
+ } elsif ( 'draft' eq $params->{stage} ) { + # Create the to header + my $to = $params->{partners}; + $to =~ s/^\x00//; # Strip leading NULLs + $to =~ s/\x00/; /; # Replace others with '; '
Why would you need to replace a null byte with a semicolon (;)? It seems to me that email addresses should be separated by a comma? -- You are receiving this mail because: You are watching all bug changes.