MDL-22054 skip loading of missing modules

This commit is contained in:
Petr Skoda 2010-04-11 08:59:27 +00:00
parent 8c25522551
commit fc61cecd6a
2 changed files with 7 additions and 0 deletions

View file

@ -2825,6 +2825,10 @@ function &get_fast_modinfo(&$course, $userid=0) {
$minimalmodinfo=new stdClass();
$minimalmodinfo->cms=array();
foreach($info as $mod) {
if (empty($mod->name)) {
// something is wrong here
continue;
}
$minimalcm = new stdClass();
$minimalcm->id = $mod->cm;
$minimalcm->name = $mod->name;