- Patch #45729 by markus, jvandyk, moshe: fixed problem with permission checking.
parent
1766d40093
commit
bc9cbefa30
|
@ -337,7 +337,7 @@ function user_access($string, $account = NULL) {
|
|||
|
||||
// To reduce the number of SQL queries, we cache the user's permissions
|
||||
// in a static variable.
|
||||
if (!isset($perm[$account->uid]) && count($user->roles)) {
|
||||
if (!isset($perm[$account->uid])) {
|
||||
$result = db_query("SELECT DISTINCT(p.perm) FROM {role} r INNER JOIN {permission} p ON p.rid = r.rid WHERE r.rid IN (%s)", implode(',', array_keys($account->roles)));
|
||||
|
||||
$perm[$account->uid] = '';
|
||||
|
|
|
@ -337,7 +337,7 @@ function user_access($string, $account = NULL) {
|
|||
|
||||
// To reduce the number of SQL queries, we cache the user's permissions
|
||||
// in a static variable.
|
||||
if (!isset($perm[$account->uid]) && count($user->roles)) {
|
||||
if (!isset($perm[$account->uid])) {
|
||||
$result = db_query("SELECT DISTINCT(p.perm) FROM {role} r INNER JOIN {permission} p ON p.rid = r.rid WHERE r.rid IN (%s)", implode(',', array_keys($account->roles)));
|
||||
|
||||
$perm[$account->uid] = '';
|
||||
|
|
Loading…
Reference in New Issue