Merge branch 'wip-MDL-39044-master' of git://github.com/phalacee/moodle

This commit is contained in:
Sam Hemelryk 2013-06-24 15:43:19 +12:00
commit c7b6c86a49

View File

@ -210,12 +210,12 @@ if (empty($completions)) {
$agg = $info->get_aggregation_method($row['type']);
echo '('. html_writer::start_tag('i');
if ($agg == COMPLETION_AGGREGATION_ALL) {
echo strtolower(get_string('all', 'completion'));
echo textlib::strtolower(get_string('all', 'completion'));
} else {
echo strtolower(get_string('any', 'completion'));
echo textlib::strtolower(get_string('any', 'completion'));
}
echo html_writer::end_tag('i') .strtolower(get_string('required')).')';
echo html_writer::end_tag('i') .textlib::strtolower(get_string('required')).')';
$agg_type = false;
}
}