Selaa lähdekoodia

* Added the _ to further ensure that the bounary string can't be made
by accident in a MIME-encoded file.

Tyler Akins 24 vuotta sitten
vanhempi
commit
88175651c0
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      functions/smtp.php

+ 1 - 1
functions/smtp.php

@@ -115,7 +115,7 @@
       static $mimeBoundaryString;
 
       if ($mimeBoundaryString == "") {
-         $mimeBoundaryString = "----=" . 
+         $mimeBoundaryString = "----=_" . 
 	     GenerateRandomString(60, '\'()+,-./:=?_', 7);
       }