View | Details | Raw Unified | Return to bug 11173
Collapse All | Expand All

(-)a/C4/Letters.pm (-1 / +3 lines)
Lines 977-982 sub _send_message_by_email { Link Here
977
sub _wrap_html {
977
sub _wrap_html {
978
    my ($content, $title) = @_;
978
    my ($content, $title) = @_;
979
979
980
    $content=~s/\n/<br \/>/g;
981
    $content=~s/\r//g;
982
980
    my $css = C4::Context->preference("NoticeCSS") || '';
983
    my $css = C4::Context->preference("NoticeCSS") || '';
981
    $css = qq{<link rel="stylesheet" type="text/css" href="$css">} if $css;
984
    $css = qq{<link rel="stylesheet" type="text/css" href="$css">} if $css;
982
    return <<EOS;
985
    return <<EOS;
983
- 

Return to bug 11173