summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--program/lib/Mail/mimePart.php1
-rw-r--r--program/lib/html2text.php6
2 files changed, 3 insertions, 4 deletions
diff --git a/program/lib/Mail/mimePart.php b/program/lib/Mail/mimePart.php
index 7427a1002..b404fc522 100644
--- a/program/lib/Mail/mimePart.php
+++ b/program/lib/Mail/mimePart.php
@@ -243,7 +243,6 @@ class Mail_mimePart {
$encoded =& $this->_encoded;
if (count($this->_subparts)) {
- srand((double)microtime()*1000000);
$boundary = '=_' . md5(rand() . microtime());
$this->_headers['Content-Type'] .= ';' . MAIL_MIMEPART_CRLF . "\t" . 'boundary="' . $boundary . '"';
diff --git a/program/lib/html2text.php b/program/lib/html2text.php
index d298ee2e4..e2a5b241e 100644
--- a/program/lib/html2text.php
+++ b/program/lib/html2text.php
@@ -468,13 +468,13 @@ class html2text
// Convert <PRE>
$this->_convert_pre($text);
- // Replace known html entities
- $text = html_entity_decode($text, ENT_COMPAT, 'UTF-8');
-
// Run our defined search-and-replace
$text = preg_replace($this->search, $this->replace, $text);
$text = preg_replace_callback($this->callback_search, array('html2text', '_preg_callback'), $text);
+ // Replace known html entities
+ $text = html_entity_decode($text, ENT_COMPAT, 'UTF-8');
+
// Strip any other HTML tags
$text = strip_tags($text, $this->allowed_tags);