Adding the environmentbox class to the box.

This commit is contained in:
stronk7 2007-03-18 19:18:51 +00:00
parent d9c201e1a0
commit 28894c72b2

View file

@ -234,12 +234,12 @@ function print_moodle_environment($result, $environment_results) {
/// And feedback accumulated text
if ($feedbacktext) {
print_simple_box('<ul>'.$feedbacktext.'</ul>', 'center', '90%');
print_simple_box('<ul>'.$feedbacktext.'</ul>', 'center', '90%', '', '', 'environmentbox generalbox');
}
/// Finally, if any error has happened, print the summary box
if (!$result) {
print_simple_box($strenvironmenterrortodo, 'center', '', '', '', 'errorbox');
print_simple_box($strenvironmenterrortodo, 'center', '', '', '', 'environmentbox errorbox');
}
}