Skip to content

Commit

Permalink
MDL-29672 user: Fixed user edit page for non-admin users
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam Hemelryk committed Oct 9, 2011
1 parent b77088c commit 01ec550
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions user/edit.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
$course = optional_param('course', SITEID, PARAM_INT); // course id (defaults to Site)
$cancelemailchange = optional_param('cancelemailchange', 0, PARAM_INT); // course id (defaults to Site)

$PAGE->set_url('/user/edit.php', array('course'=>$course, 'id'=>$userid, 'cancelemailchange'=>$cancelemailchange));
$PAGE->set_url('/user/edit.php', array('course'=>$course, 'id'=>$userid));

if (!$course = $DB->get_record('course', array('id'=>$course))) {
print_error('invalidcourseid');
Expand All @@ -50,7 +50,8 @@
}
redirect(get_login_url());
} else {
$PAGE->set_course($course);
$PAGE->set_context(get_system_context());
$PAGE->set_pagelayout('standard');
}

// Guest can not edit
Expand Down

0 comments on commit 01ec550

Please sign in to comment.