From 8b193bec63bfc773f9982f7a2ae9899193c35fdc Mon Sep 17 00:00:00 2001 From: Sam Mousa Date: Mon, 25 Feb 2013 21:54:37 +0100 Subject: [PATCH] Fixed issue #7332: Unnecessary line break after inserting of completed.pstpl into final survey page --- application/helpers/SurveyRuntimeHelper.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/helpers/SurveyRuntimeHelper.php b/application/helpers/SurveyRuntimeHelper.php index cddd3b44776..d4dfd3b0eb4 100644 --- a/application/helpers/SurveyRuntimeHelper.php +++ b/application/helpers/SurveyRuntimeHelper.php @@ -509,7 +509,7 @@ function run($surveyid,$args) { } $redata['completed'] = $completed; echo templatereplace(file_get_contents($sTemplatePath."completed.pstpl"), array('completed' => $completed), $redata); - echo "\n
\n"; + echo "\n"; if ((($LEMdebugLevel & LEM_DEBUG_TIMING) == LEM_DEBUG_TIMING)) { echo LimeExpressionManager::GetDebugTimingMessage();