fixed 'capabilitities' typos and removed forgotten debug_print_backtrace() commited with MDL-6728

This commit is contained in:
skodak 2006-10-08 11:00:49 +00:00
parent ab61d01b06
commit 17e5635c36
2 changed files with 4 additions and 5 deletions

View File

@ -413,7 +413,7 @@ class block_base {
$errors[] = 'invalid_content_type';
$correct = false;
}
//following selftest was not working when roles&capabilitites were used from block
//following selftest was not working when roles&capabilities were used from block
/* if ($this->get_content() === NULL) {
$errors[] = 'content_not_set';
$correct = false;

View File

@ -939,7 +939,7 @@ function moodle_install_roles() {
$guestrole = create_role(get_string('guest'), 'guest',
get_string('guestdescription'), 'moodle/legacy:guest');
/// Now is the correct moment to install capabilitites - after creation of legacy roles, but before assigning of roles
/// Now is the correct moment to install capabilities - after creation of legacy roles, but before assigning of roles
if (!assign_capability('moodle/site:doanything', CAP_ALLOW, $adminrole, $systemcontext->id)) {
error('Could not assign moodle/site:doanything to the admin role');
@ -1164,7 +1164,6 @@ function create_context($contextlevel, $instanceid) {
if (!$context = get_record('context','contextlevel',$contextlevel,'instanceid',$instanceid)) {
if (!validate_context($contextlevel, $instanceid)) {
debugging('Error: Invalid context creation request for level "'.s($contextlevel).'", instance "'.s($instanceid).'".');
debug_print_backtrace();
return NULL;
}
$context = new object();
@ -1882,7 +1881,7 @@ function update_capabilities($component='moodle') {
if ($cachedcaps) {
foreach ($cachedcaps as $cachedcap) {
array_push($storedcaps, $cachedcap->name);
// update risk bitmasks in existing capabilitites if needed
// update risk bitmasks in existing capabilities if needed
if (array_key_exists($cachedcap->name, $filecaps)) {
if (!array_key_exists('riskbitmask', $filecaps[$cachedcap->name])) {
$filecaps[$cachedcap->name]['riskbitmask'] = 0; // no risk if not specified
@ -2162,7 +2161,7 @@ function fetch_context_capabilities($context) {
*/
function fetch_context_independent_capabilities() {
//only CONTEXT_SYSTEM capabilitites here or it will break the hack in fetch_context_capabilities()
//only CONTEXT_SYSTEM capabilities here or it will break the hack in fetch_context_capabilities()
$contextindependentcaps = array(
'moodle/site:accessallgroups'
);