mirror of
https://github.com/silverstripe/silverstripe-contentreview
synced 2024-10-22 17:05:47 +02:00
Merge pull request #56 from NightJar/patch-1
Avoid fatal errors when trying to edit in the CMS
This commit is contained in:
commit
509e798cb1
@ -454,6 +454,10 @@ class SiteTreeContentReview extends DataExtension implements PermissionProvider
|
||||
|
||||
$options = $this->getOptions();
|
||||
|
||||
if (!$options || !$options->hasExtension($this->class)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if ($options->OwnerGroups()->count() == 0 && $options->OwnerUsers()->count() == 0) {
|
||||
return false;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user