Merge pull request #56 from NightJar/patch-1

Avoid fatal errors when trying to edit in the CMS
This commit is contained in:
Daniel Hensby 2017-03-24 19:38:33 +13:00 committed by GitHub
commit 509e798cb1
1 changed files with 4 additions and 0 deletions

View File

@ -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;
}