MDL-30518 get_context_instance takes one parameter at the SYSTEM level

This commit is contained in:
Charles Fulton
2011-11-30 05:47:50 -08:00
parent 1de9151c6f
commit 59c1a98c05
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -41,7 +41,7 @@ if ($courseid != SITEID) {
}
// Permissions
$sitecontext = get_context_instance(CONTEXT_SYSTEM, SITEID);
$sitecontext = get_context_instance(CONTEXT_SYSTEM);
require_login($course->id);
$canedit = has_capability('moodle/tag:create', $sitecontext);
+1 -1
View File
@@ -29,7 +29,7 @@ class profile_field_checkbox extends profile_field_base {
$checkbox->setChecked(true);
}
$mform->setType($this->inputname, PARAM_BOOL);
if ($this->is_required() and !has_capability('moodle/user:update', get_context_instance(CONTEXT_SYSTEM, SITEID))) {
if ($this->is_required() and !has_capability('moodle/user:update', get_context_instance(CONTEXT_SYSTEM))) {
$mform->addRule($this->inputname, get_string('required'), 'nonzero', null, 'client');
}
}