mirror of
https://github.com/moodle/moodle.git
synced 2025-01-18 05:58:34 +01:00
Added a message if the student is not a member of the current course
This commit is contained in:
parent
18798c6f55
commit
8a3b358be9
@ -23,6 +23,7 @@
|
||||
|
||||
$fullname = "$user->firstname $user->lastname";
|
||||
|
||||
|
||||
add_to_log($course->id, "user", "view", "view.php?id=$user->id&course=$course->id", "$user->id");
|
||||
|
||||
if ($course->category) {
|
||||
@ -33,6 +34,12 @@
|
||||
print_header("Personal profile: $fullname", "Personal profile: $fullname", "$fullname", "");
|
||||
}
|
||||
|
||||
if (!isstudent($course->id, $user->id) && !isteacher($course->id, $user->id)) {
|
||||
print_heading("$fullname is not enrolled in this course");
|
||||
print_footer($course);
|
||||
die;
|
||||
}
|
||||
|
||||
|
||||
echo "<TABLE WIDTH=80% ALIGN=CENTER BORDER=0 CELLPADDING=1 CELLSPACING=1><TR><TD BGCOLOR=#888888>";
|
||||
echo "<TABLE WIDTH=100% BORDER=0 CELLPADDING=3 CELLSPACING=0><TR>";
|
||||
|
Loading…
x
Reference in New Issue
Block a user