MDL-34713 - Blog - Fixing undefined index for blog menu block

This commit is contained in:
Jason Fowler 2013-03-08 13:46:27 +08:00
parent 8673a98d1d
commit 46a710e998

View File

@ -601,7 +601,7 @@ function blog_get_options_for_module($module, $user=null) {
}
if (array_key_exists($key, $moduleoptions)) {
// Serve from the cache so we don't have to regenerate
return $moduleoptions[$module->id];
return $moduleoptions[$key];
}
$canparticipate = (is_enrolled($modcontext) or is_viewing($modcontext));