Bug #22098 ยป t3lib_userauthgroup_return.patch
t3lib/class.t3lib_userauthgroup.php (working copy) | ||
---|---|---|
function check($type,$value) {
|
||
if (isset($this->groupData[$type])) {
|
||
if ($this->isAdmin() || $this->inList($this->groupData[$type],$value)) {
|
||
return 1;
|
||
return TRUE;
|
||
}
|
||
}
|
||
return FALSE;
|
||
}
|
||
/**
|