소스 검색

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

Tyler Akins 24 년 전
부모
커밋
88175651c0
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      functions/smtp.php

+ 1 - 1
functions/smtp.php

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