Bug #12307 » 12307_core_v2.patch
t3lib/class.t3lib_userauthgroup.php (revision ) | ||
---|---|---|
return TRUE; // OK for these criteria
|
||
}
|
||
}
|
||
// only owner is allowed to change records which are "ready to publish"
|
||
} elseif ($stage == '-10') {
|
||
if ($stat['_ACCESS'] === 'owner') {
|
||
return TRUE; // OK for these criteria
|
||
} else {
|
||
} else {
|
||
return FALSE;
|
||
}
|
||
} else {
|
||
$memberStageLimit = $this->workspaceRec['review_stage_edit'] ? 1 : 0;
|
||
if (($stage <= $memberStageLimit && $stat['_ACCESS'] === 'member')
|
||
|| ($stage <= 1 && $stat['_ACCESS'] === 'reviewer')
|