Merge pull request #303 from SilbinaryWolf/fix-changing-blog-pagetype

Fix bug where can't change 'Blog' page type to non-'Blog' page type
This commit is contained in:
Damian Mooyman 2015-11-20 12:49:54 +13:00
commit 7bddc86ab4
1 changed files with 7 additions and 4 deletions

View File

@ -548,10 +548,13 @@ class Blog extends Page implements PermissionProvider {
$group = $this->getUserGroup();
foreach(array($this->Editors(), $this->Writers(), $this->Contributors()) as $levels) {
foreach($levels as $user) {
if(!$user->inGroup($group)) {
$user->Groups()->add($group);
// Must check if the method exists or else an error occurs when changing page type
if ($this->hasMethod('Editors')) {
foreach(array($this->Editors(), $this->Writers(), $this->Contributors()) as $levels) {
foreach($levels as $user) {
if(!$user->inGroup($group)) {
$user->Groups()->add($group);
}
}
}
}