From 39bb937a6a9742fe2be035952611e1b61da61840 Mon Sep 17 00:00:00 2001 From: skodak Date: Fri, 3 Aug 2007 14:56:32 +0000 Subject: [PATCH] MDL-10549 finally found the cause of incorrect layout - invisiblefieldset strikes again --- mod/assignment/lib.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/mod/assignment/lib.php b/mod/assignment/lib.php index 424f045f95..6b3e693995 100644 --- a/mod/assignment/lib.php +++ b/mod/assignment/lib.php @@ -851,7 +851,7 @@ class assignment_base { echo ''; echo ''; echo '
'; - echo '
'; + echo '
'; // xhtml compatibility - invisiblefieldset was breaking layout here echo ''; echo ''; echo ''; @@ -891,7 +891,6 @@ class assignment_base { $this->preprocess_submission($submission); - echo '
'; print_textarea($this->usehtmleditor, 14, 58, 0, 0, 'submissioncomment', $submission->submissioncomment, $this->course->id); if ($this->usehtmleditor) { @@ -913,8 +912,7 @@ class assignment_base { echo ''; } echo '
'; - echo '
'; - echo '
'; + echo ''; $customfeedback = $this->custom_feedbackform($submission, true); if (!empty($customfeedback)) { -- 2.39.5