Procházet zdrojové kódy

Fixed flaw in logic

Tyler Akins před 24 roky
rodič
revize
47a68ff31e
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      functions/mime.php

+ 1 - 1
functions/mime.php

@@ -553,7 +553,7 @@
    
          // If there are other types that shouldn't be formatted, add
          // them here 
-         if ($body_message->header->type1 != "html" && $show_html_default) {
+         if ($body_message->header->type1 != "html" || ! $show_html_default) {
             translateText($body, $wrap_at, $body_message->header->charset);
          }