فهرست منبع

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 14 سال پیش
والد
کامیت
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)
     public static function decodeQuotedPrintable($string)
     {
     {
-        return iconv_mime_decode($string, ICONV_MIME_DECODE_CONTINUE_ON_ERROR);
+        return quoted_printable_decode($string);
     }
     }
 }
 }