summaryrefslogtreecommitdiff
path: root/roundcubemail/program/lib
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-04-17 18:14:17 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-04-17 18:14:17 +0000
commitb3ae63b268b6eb7c59f50d419824b630ab09b679 (patch)
tree16d5a192da60b8332df1b5969f01f0c6cf52b9ee /roundcubemail/program/lib
parentaf62e8109d2050575ac1678f333abf6564d496fa (diff)
#1484728
git-svn-id: https://svn.roundcube.net/trunk@1323 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/lib')
-rw-r--r--roundcubemail/program/lib/Mail/mimePart.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/roundcubemail/program/lib/Mail/mimePart.php b/roundcubemail/program/lib/Mail/mimePart.php
index 04c4a9789..cfa3ca4fa 100644
--- a/roundcubemail/program/lib/Mail/mimePart.php
+++ b/roundcubemail/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 . '"';