"MDL-17143, don't display the user description at all when user isn't enrolled in any courses, merged and modified from 1.9"

This commit is contained in:
dongsheng 2008-11-10 03:06:27 +00:00
parent 7b825c4f6f
commit 35f0660ab4
6 changed files with 30 additions and 1 deletions

View file

@ -210,7 +210,13 @@
// Print the description
if ($user->description && !isset($hiddenfields['description'])) {
echo format_text($user->description, FORMAT_MOODLE)."<hr />";
$has_courseid = ($course->id != SITEID);
if (!$DB->get_record('role_assignments', array('userid'=>$id))
&& !$has_courseid && $CFG->profilesforenrolledusersonly) {
echo get_string('profilenotshown', 'moodle').'<hr />';
} else {
echo format_text($user->description, FORMAT_MOODLE)."<hr />";
}
}
// Print all the little details in a list