}
print_simple_box_end();
- print_spacer(30,30);
+ $spacer = new html_image();
+ $spacer->height = 30;
+ $spacer->width = 30;
+ echo $OUTPUT->spacer($spacer) . '<br />';
/// Print the menu across the top
} else {
print_box(format_module_intro('survey', $survey, $cm->id), 'generalbox', 'intro');
- print_spacer(30);
+ $spacer = new html_image();
+ $spacer->height = 30;
+ echo $OUTPUT->spacer(clone($spacer)) . '<br />';
$questions = $DB->get_records_list("survey_questions", "id", explode(',', $survey->questions));
$questionorder = explode(",", $survey->questions);
$table->align = array ("left");
$table->data[] = array(s($answer->answer1));//no html here, just plain text
print_table($table);
- print_spacer(30);
+ echo $OUTPUT->spacer(clone($spacer)) . '<br />';
}
}
}
print_footer($course);
-?>
\ No newline at end of file
+?>