@@ -, +, @@ carriage return with
when printing hold notices" --- misc/cronjobs/gather_print_notices.pl | 8 -------- 1 file changed, 8 deletions(-) --- a/misc/cronjobs/gather_print_notices.pl +++ a/misc/cronjobs/gather_print_notices.pl @@ -69,14 +69,6 @@ my $today = C4::Dates->new(); my @all_messages = @{ GetPrintMessages() }; exit unless (@all_messages); -## carriage return replaced by
as output is html -foreach my $message (@all_messages) { - local $_ = $message->{'content'}; - s/\n/
/g; - s/\r//g; - $message->{'content'} = $_; -} - my $OUTPUT; if ($split) { --