MDL-36906 - mod_data: Latitude and Logitude error fix.

Thanks to Marcus Boon for providing a patch for this issue.

mod/data/field/latlong/kml.php was missing a context variable.
This was causing an error when trying to download a kml file for
google earth. This variable has now been included.
This commit is contained in:
Adrian Greeve
2012-11-29 14:48:50 +08:00
parent e4592b226d
commit 8e223e56cb
+3 -1
View File
@@ -75,8 +75,10 @@ if ($rid) {
require_course_login($course, true, $cm);
$context = context_module::instance($cm->id);
/// If it's hidden then it's don't show anything. :)
if (empty($cm->visible) and !has_capability('moodle/course:viewhiddenactivities',get_context_instance(CONTEXT_MODULE, $cm->id))) {
if (empty($cm->visible) and !has_capability('moodle/course:viewhiddenactivities', $context)) {
$PAGE->set_title($data->name);
echo $OUTPUT->header();
notice(get_string("activityiscurrentlyhidden"));