Merge branch 'MDL-31466-master' of git://github.com/ankitagarwal/moodle

This commit is contained in:
Sam Hemelryk 2012-03-05 11:35:18 +13:00
commit 936deb7e68

View File

@ -444,15 +444,11 @@ function coursetag_get_tagged_courses($tagid) {
$courses = array();
if ($crs = $DB->get_records_select('tag_instance', "tagid=:tagid AND itemtype='course'", array('tagid'=>$tagid))) {
foreach ($crs as $c) {
//this capability check was introduced to stop display of courses that a student could not
//view, but arguably it is best that when clicking on a tag, the tagged course summary should
//be seen and then if the student clicks on that they will be given the opportunity to join
//note courses not visible should not have their tagid sent to this function
// $context = get_context_instance(CONTEXT_COURSE, $c->itemid);
//if (is_enrolled($context) oe is_viewing($context)) {
$course = $DB->get_record('course', array('id'=>$c->itemid));
$course = $DB->get_record('course', array('id'=>$c->itemid));
// check if the course is hidden
if ($course->visible == 1 || has_capability('moodle/course:viewhiddencourses', context_course::instance($course->id))) {
$courses[$c->itemid] = $course;
//}
}
}
}
return $courses;