소스 검색

ZF-10236
Zend_Mime
Update decodeQuotedPrintable to use quoted_printable_decode


git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@23944 44c647ce-9c0f-0410-b52a-842ac1e357ba

adamlundrigan 15 년 전
부모
커밋
d509302b3e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      library/Zend/Mime/Decode.php

+ 1 - 1
library/Zend/Mime/Decode.php

@@ -239,6 +239,6 @@ class Zend_Mime_Decode
      */
     public static function decodeQuotedPrintable($string)
     {
-        return iconv_mime_decode($string, ICONV_MIME_DECODE_CONTINUE_ON_ERROR);
+        return quoted_printable_decode($string);
     }
 }