Sfoglia il codice sorgente

fix for bug #552961 broke the reply ">" format. removing the sqUnWordWrap function from here fixes the problem.

jmunro 23 anni fa
parent
commit
3bcb008af5
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      src/compose.php

+ 1 - 1
src/compose.php

@@ -405,7 +405,7 @@ function newMail () {
             $body = strip_tags($body);
             $body = strip_tags($body);
         }
         }
 
 
-        sqUnWordWrap($body);
+        //sqUnWordWrap($body);
         $body_ary = explode("\n", $body);
         $body_ary = explode("\n", $body);
         $i = count($body_ary) - 1;
         $i = count($body_ary) - 1;
         while ($i >= 0 && ereg("^[>\\s]*$", $body_ary[$i])) {
         while ($i >= 0 && ereg("^[>\\s]*$", $body_ary[$i])) {