I successfully added the mod for line breaks in my template:
$EVENT->{details}->{$_} =~ s/\r\n/<BR>/g;
Then, months later, it stopped working. I decided to try
$EVENT->{details}->{$_} =~ s/\n/<BR>/g;
I know nothing about Perl, but I was thinking my web server is handling line breaks differently (i.e. only using \n now)
and it worked! My own hack Magic to me!
My final fix was to have both lines such that only one of them should be 'triggered'.
This is what it looked like together:
$EVENT->{details}->{$_} =~ s/\r\n/<BR>/g;
$EVENT->{details}->{$_} =~ s/\n/<BR>/g;
Use at your own discretion, I only recognized the \r and \n amongst the Perl code. I do not know Perl.
Mike
------------------