From 5e406f7b7e452031e6ec924536a562c0c414f4e9 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Mon, 25 Apr 2016 20:56:04 +0200 Subject: [PATCH] Disable links list when converting html2text for spellchecking --- program/lib/Roundcube/rcube_spellchecker.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/program/lib/Roundcube/rcube_spellchecker.php b/program/lib/Roundcube/rcube_spellchecker.php index a579cacf5..29c9a93b5 100644 --- a/program/lib/Roundcube/rcube_spellchecker.php +++ b/program/lib/Roundcube/rcube_spellchecker.php @@ -250,7 +250,7 @@ class rcube_spellchecker private function html2text($text) { - $h2t = new rcube_html2text($text, false, true, 0); + $h2t = new rcube_html2text($text, false, false, 0); return $h2t->get_text(); }