Browse Source

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

graf25 23 years ago
parent
commit
ab02227d67
1 changed files with 2 additions and 1 deletions
  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);