Adding the environmentbox class to the box.

Merged from MOODLE_18_STABLE
This commit is contained in:
stronk7 2007-03-18 19:20:40 +00:00
parent 5a9f70b25f
commit cc60cd9bf4

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');
}
}