silverstripe / silverstripe-framework

Silverstripe Framework, the MVC framework that powers Silverstripe CMS
https://www.silverstripe.org
BSD 3-Clause "New" or "Revised" License
720 stars 822 forks source link

'Duplicate this page only' not duplicating all content #11039

Closed groundnation closed 8 months ago

groundnation commented 8 months ago

Just updated to 5.1.0, 'Duplicate this page only' duplicates the page but not all content i.e. not $has_many data objects. Same behaviour in 5.0.0.

emteknetnz commented 8 months ago

Try adding private static $cascade_duplicates = [YourChildObject::class]; to your page - https://docs.silverstripe.org/en/4/developer_guides/model/relations/#cascading-duplications

groundnation commented 8 months ago

Yep - that worked, may thanks.