Skip to content

Commit

Permalink
Partially merge w07_MDL-25575_20_contexttrouble. See PULL-299
Browse files Browse the repository at this point in the history
  • Loading branch information
stronk7 committed Feb 14, 2011
2 parents 7d87147 + 28765cf commit 396dca7
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/accesslib.php
Expand Up @@ -2352,6 +2352,10 @@ function get_context_info_array($contextid) {
* @return int|bool related course id or false
*/
function get_courseid_from_context($context) {
if (empty($context->contextlevel)) {
debugging('Invalid context object specified in get_courseid_from_context() call');
return false;
}
if ($context->contextlevel == CONTEXT_COURSE) {
return $context->instanceid;
}
Expand All @@ -2370,7 +2374,7 @@ function get_courseid_from_context($context) {
if ($context->contextlevel == CONTEXT_BLOCK) {
$parentcontexts = get_parent_contexts($context, false);
$parent = reset($parentcontexts);
return get_courseid_from_context($parent);
return get_courseid_from_context(get_context_instance_by_id($parent));
}

return false;
Expand Down

0 comments on commit 396dca7

Please sign in to comment.