Changeset 5965

Show
Ignore:
Timestamp:
05/17/08 18:26:41 (8 months ago)
Author:
coolengineer
Message:
  • #960
  • utf8 변환이 안될 경우 무시
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/components/Needlworks.Mail.Pop3.php

    r5962 r5965  
    379379                    $mail['text'] = iconv( $mail['content_charset'], 'utf-8', $mail['text'] ); 
    380380                } elseif( isset($this->fallback_charset) ) { 
    381                     $mail['text'] = iconv( $this->fallback_charset, 'utf-8', $mail['text'] ); 
     381                    $mail['text'] = iconv( $this->fallback_charset, 'utf-8//IGNORE', $mail['text'] ); 
    382382                } 
    383383            }