Skip to content

Commit

Permalink
Merge branch 'wip-MDL-39044-stable25' of git://github.com/phalacee/mo…
Browse files Browse the repository at this point in the history
…odle into MOODLE_25_STABLE
  • Loading branch information
Sam Hemelryk committed Jun 24, 2013
2 parents 82125f7 + 1620d20 commit 4418496
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions blocks/completionstatus/details.php
Expand Up @@ -210,12 +210,12 @@
$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;
}
}
Expand Down

0 comments on commit 4418496

Please sign in to comment.