Changeset 600

Show
Ignore:
Timestamp:
07/15/06 19:07:01 (4 years ago)
Author:
bchoate
Message:

Wrap ping excerpt for notification email instead of entire email. BugId: 32709

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/mt3.32/lib/MT/App/Trackback.pm

    r456 r600  
    401401                  ping_ip => $ping->ip, 
    402402                  ping_url => $ping->source_url, 
    403                   ping_excerpt => $ping->excerpt, 
     403                  ping_excerpt => wrap_text($ping->excerpt, 72), 
    404404                  ping_blog_name => $ping->blog_name, 
    405405                  ping_title => $ping->title, 
     
    418418        $head{'Content-Type'} = qq(text/plain; charset="$charset"); 
    419419        my $body = MT->build_email('new-ping.tmpl', \%param); 
    420         $body = wrap_text($body, 72); 
    421420        MT::Mail->send(\%head, $body); 
    422421    }