Skip to content

Commit

Permalink
MDL-22896 libraries: Updated regular expression in html2text, for rep…
Browse files Browse the repository at this point in the history
…lacing unknown/unhandled entities
  • Loading branch information
Rajesh Taneja committed Feb 24, 2012
1 parent c4a12af commit 59c8116
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/html2text.php
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ function _convert()
$text = html_entity_decode($text, ENT_COMPAT, 'UTF-8');

// Remove unknown/unhandled entities (this cannot be done in search-and-replace block)
$text = preg_replace('/&[^&;]+;/i', '', $text);
$text = preg_replace('/&([a-zA-Z0-9]{2,6}|#[0-9]{2,4});/', '', $text);

// Strip any other HTML tags
$text = strip_tags($text, $this->allowed_tags);
Expand Down

0 comments on commit 59c8116

Please sign in to comment.