diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-01-12 07:46:22 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-01-12 07:46:22 +0000 |
| commit | dfc926fbcc750eae40f6154e981629e538920ada (patch) | |
| tree | 4d7a3a7b7852f39f646356dcea85495e21e256e3 /roundcubemail/program | |
| parent | 5ed6a82f44cb4d39712306ef7e88cb49d953e7ed (diff) | |
- Fix to-text converting of HTML entities inside b/strong/th/hX tags (#1486422)
git-svn-id: https://svn.roundcube.net/trunk@3198 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program')
| -rw-r--r-- | roundcubemail/program/lib/html2text.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/roundcubemail/program/lib/html2text.php b/roundcubemail/program/lib/html2text.php index dbf0943d5..49c636f3c 100644 --- a/roundcubemail/program/lib/html2text.php +++ b/roundcubemail/program/lib/html2text.php @@ -468,11 +468,13 @@ class html2text // 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'); + // Run our defined search-and-replace with callback + $text = preg_replace_callback($this->callback_search, array('html2text', '_preg_callback'), $text); + // Remove unknown/unhandled entities (this cannot be done in search-and-replace block) $text = preg_replace('/&[^&;]+;/i', '', $text); @@ -566,7 +568,7 @@ class html2text case 'b': case 'strong': return $this->_strtoupper($matches[2]); - case 'hr': + case 'th': return $this->_strtoupper("\t\t". $matches[2] ."\n"); case 'h': return $this->_strtoupper("\n\n". $matches[2] ."\n\n"); |
