From 3d8b54edf74792e3996d861a6a30c41d82976261 Mon Sep 17 00:00:00 2001
From: thomascube <thomas@roundcube.net>
Date: Tue, 12 Apr 2011 14:05:36 -0400
Subject: [PATCH] Keep all submitted data if contact form validation fails (#1487865)

---
 program/steps/utils/spell_html_googie.inc |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/program/steps/utils/spell_html_googie.inc b/program/steps/utils/spell_html_googie.inc
index 73011f5..ceda626 100644
--- a/program/steps/utils/spell_html_googie.inc
+++ b/program/steps/utils/spell_html_googie.inc
@@ -80,7 +80,7 @@
   $path = $a_uri['path'] . ($a_uri['query'] ? '?'.$a_uri['query'] : '') . $lang;
   }
 
-$wordstr = implode(' ', (array) $data);
+$wordstr = implode("\n", (array) $data);
 $data = '<?xml version="1.0" encoding="utf-8" ?>'
     .'<spellrequest textalreadyclipped="0" ignoredups="0" ignoredigits="1" ignoreallcaps="1">'
     .'<text>' . $wordstr . '</text>'

--
Gitblit v1.9.1