mirror of
https://github.com/silverstripe/silverstripe-blog
synced 2024-10-22 11:05:58 +02:00
Merge branch '4' into 5
This commit is contained in:
commit
8ae4ed9dfd
@ -40,6 +40,10 @@ class BlogMemberExtension extends DataExtension
|
|||||||
'BlogProfileImage' => Image::class
|
'BlogProfileImage' => Image::class
|
||||||
];
|
];
|
||||||
|
|
||||||
|
private static array $owns = [
|
||||||
|
'BlogProfileImage',
|
||||||
|
];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var array
|
* @var array
|
||||||
*/
|
*/
|
||||||
@ -64,11 +68,6 @@ class BlogMemberExtension extends DataExtension
|
|||||||
$this->owner->URLSegment = preg_replace('/-[0-9]+$/', '', $this->owner->URLSegment ?? '') . '-' . $count;
|
$this->owner->URLSegment = preg_replace('/-[0-9]+$/', '', $this->owner->URLSegment ?? '') . '-' . $count;
|
||||||
$count++;
|
$count++;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Auto publish profile images
|
|
||||||
if ($this->owner->BlogProfileImage() && $this->owner->BlogProfileImage()->exists()) {
|
|
||||||
$this->owner->BlogProfileImage()->publishSingle();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user