Changeset 6294

Show
Ignore:
Timestamp:
06/18/08 03:36:09 (6 months ago)
Author:
coolengineer
Message:
  • #960
  • KTF의 MMS에 대응하여 광고만 삭제
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/plugins/CL_Moblog/index.php

    r6228 r6294  
    141141 
    142142    function _getDecoratedContent( & $mail, $docid ) { 
     143            if( !empty($mail['text']) && strstr($mail['text'],'magicn.com') ) { 
     144                $mail['text'] = preg_replace( '@.*<BODY>(.*?)<style.*@smi', '$1', $mail['text']); 
     145                $mail['text'] = preg_replace( '@<IMG[^>]*?cid:[^>]*?>@smi', '', $mail['text']); 
     146                $mail['text'] = preg_replace( '@<BR>\s*<BR>\s*<BR>@smi', '<BR>', $mail['text']); 
     147            } 
    143148            $text = "<h3 id=\"$docid\">$docid</h3>\r\n"; 
    144149            $text .= empty($mail['subject']) ? '' : ("<p>".$mail['subject']."</p>\r\n"); 
    145             $text .= isset($mail['text']) ? (!stristr($mail['text'],'table')? "<p>{$mail['text']}</p>" : '') : ''; 
     150            $text .= "<p>{$mail['text']}</p>\r\n"; 
    146151            return $text; 
    147152    }