diff --git a/main/survey/fillsurvey.php b/main/survey/fillsurvey.php
index d3dc567428..cbb45ac7d2 100644
--- a/main/survey/fillsurvey.php
+++ b/main/survey/fillsurvey.php
@@ -258,8 +258,10 @@ if (!isset($_GET['show'])) {
unset($_SESSION['paged_questions']);
unset($_SESSION['page_questions_sec']);
$paged_questions_sec=array();
-
- echo '
'.$survey_data['survey_introduction'].'
';
+
+ if (!empty($survey_data['survey_introduction'])) {
+ echo ''.$survey_data['survey_introduction'].'
';
+ }
$limit = 0;
}
diff --git a/main/survey/preview.php b/main/survey/preview.php
index 744c1b2be2..7257a49bad 100644
--- a/main/survey/preview.php
+++ b/main/survey/preview.php
@@ -81,7 +81,9 @@ if (api_is_course_admin() || (api_is_course_admin() && $_GET['isStudentView'] ==
// Displaying the survey introduction
if (!isset($_GET['show'])) {
- echo ''.$survey_data['survey_introduction'].'
';
+ if (!empty($survey_data['survey_introduction'])) {
+ echo ''.$survey_data['survey_introduction'].'
';
+ }
$limit = 0;
}
diff --git a/main/survey/survey.lib.php b/main/survey/survey.lib.php
index 7d6b77f350..842e8e0dcd 100644
--- a/main/survey/survey.lib.php
+++ b/main/survey/survey.lib.php
@@ -2047,8 +2047,7 @@ class ch_comment extends survey_question {
function render_question($form_content) {
echo '';
echo '
'.$form_content['survey_question'].'
';
- echo '
';
- echo "\n";
+ echo '';
}
}