Skip to content

Commit

Permalink
Fixed yet another error in the same bit of SQL in get_users_by_capabi…
Browse files Browse the repository at this point in the history
…lity() that made many things not work properly on the course front page.
  • Loading branch information
gustav_delius committed Oct 16, 2007
1 parent e19c5c1 commit f914436
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/accesslib.php
Expand Up @@ -4159,7 +4159,7 @@ function get_users_by_capability($context, $capability, $fields='', $sort='',
if (!empty($CFG->defaultfrontpageroleid) && ($context->id == $frontpagectx->id || strstr($context->path, '/'.$frontpagectx->id.'/'))) {
$roles = get_roles_with_capability($capability, CAP_ALLOW, $context);
if (in_array($CFG->defaultfrontpageroleid, array_keys($roles))) {
return get_records_sql("SELECT $fields FROM {$CFG->prefix}user ORDER BY $sort", $limitfrom, $limitnum);
return get_records_sql("SELECT $fields FROM {$CFG->prefix}user u ORDER BY $sort", $limitfrom, $limitnum);
}
}

Expand Down

0 comments on commit f914436

Please sign in to comment.