From f840abe6e0338bf3d718c3ad59fea700e44ee6b8 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Sat, 11 Jun 2016 21:15:07 +0200 Subject: [PATCH] Don't add HTTP response body/headers to the spellchecker error message (it is displayed to the user) --- program/lib/Roundcube/rcube_spellcheck_googie.php | 1 - 1 file changed, 1 deletion(-) diff --git a/program/lib/Roundcube/rcube_spellcheck_googie.php b/program/lib/Roundcube/rcube_spellcheck_googie.php index f9c49243f..2196cc9ad 100644 --- a/program/lib/Roundcube/rcube_spellcheck_googie.php +++ b/program/lib/Roundcube/rcube_spellcheck_googie.php @@ -104,7 +104,6 @@ class rcube_spellcheck_googie extends rcube_spellcheck_engine $http_status = $m[1]; if ($http_status != '200') { $this->error = 'HTTP ' . $m[1] . $m[2]; - $this->error .= "\n" . $store; } }