summaryrefslogtreecommitdiff
path: root/program/lib/Mail
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2008-04-17 18:14:17 +0000
committeralecpl <alec@alec.pl>2008-04-17 18:14:17 +0000
commitf294da0d9e2088fe663228f796cd8d2df2c03972 (patch)
tree2c7e062499a60825df3968778930b3339621b601 /program/lib/Mail
parent15788164228a34cc3cb4d4886a74d42c9a757825 (diff)
#1484728
Diffstat (limited to 'program/lib/Mail')
-rw-r--r--program/lib/Mail/mimePart.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/program/lib/Mail/mimePart.php b/program/lib/Mail/mimePart.php
index 04c4a9789..cfa3ca4fa 100644
--- a/program/lib/Mail/mimePart.php
+++ b/program/lib/Mail/mimePart.php
@@ -208,7 +208,8 @@ class Mail_mimePart {
$encoded =& $this->_encoded;
if (!empty($this->_subparts)) {
- srand((double)microtime()*1000000);
+// http://pear.php.net/bugs/bug.php?id=13032
+// srand((double)microtime()*1000000);
$boundary = '=_' . md5(rand() . microtime());
$this->_headers['Content-Type'] .= ';' . MAIL_MIMEPART_CRLF . "\t" . 'boundary="' . $boundary . '"';