From 99f2ece35427027244dd23f85259fcfdc408c1a9 Mon Sep 17 00:00:00 2001 From: jangliss Date: Mon, 25 Oct 2004 01:20:33 +0000 Subject: [PATCH] Fix for SquirrelSpell output issues. Patch courtesy David Boone. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@8248 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- ChangeLog | 1 + plugins/squirrelspell/modules/check_me.mod | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index a80d895c..20d770d4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -135,6 +135,7 @@ Version 1.5.1 -- CVS - Fixed XSS exploit in decodeHeader function. - Added site configuration and custom translation engine support to translate plugin. + - Fixed SquirrelSpell error output. Patch courtesy David Boone. Version 1.5.0 -------------------- diff --git a/plugins/squirrelspell/modules/check_me.mod b/plugins/squirrelspell/modules/check_me.mod index a77958f4..288ac4f6 100644 --- a/plugins/squirrelspell/modules/check_me.mod +++ b/plugins/squirrelspell/modules/check_me.mod @@ -120,7 +120,7 @@ if ($sqspell_exitcode){ $msg= "
" . sprintf(_("I tried to execute '%s', but it returned:"), $sqspell_command) . "
"
-     . join("\n", htmlspecialchars($sqspell_output)) . "
" + . htmlspecialchars(join("\n", $sqspell_output)) . '' . '
' . '
'; -- 2.25.1