Kaynağa Gözat

Fix for #547511. Apparently some drain-bamaged clients spell it
"quoted_printable". Guess who makes those?

graf25 23 yıl önce
ebeveyn
işleme
ab02227d67
1 değiştirilmiş dosya ile 2 ekleme ve 1 silme
  1. 2 1
      functions/mime.php

+ 2 - 1
functions/mime.php

@@ -1011,7 +1011,8 @@ function decodeBody($body, $encoding) {
 
   global $show_html_default;
 
-  if ($encoding == 'quoted-printable') {
+  if ($encoding == 'quoted-printable' ||
+      $encoding == 'quoted_printable') {
      $body = quoted_printable_decode($body);