mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
Merge pull request #3002 from kinglozzer/2455-fields-preventing-publish
FIX: Remove legacy fields which prevent page publish (fixes #2455)
This commit is contained in:
commit
c77a4c94f5
@ -300,6 +300,15 @@ class SiteTree extends DataObject implements PermissionProvider, i18nEntityProvi
|
|||||||
"Stage", "Live"
|
"Stage", "Live"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fields which, if changed on their own, won't cause a new version/live record to be created
|
||||||
|
* @var string[]
|
||||||
|
*/
|
||||||
|
private static array $fields_ignored_by_versioning = [
|
||||||
|
'HasBrokenFile',
|
||||||
|
'HasBrokenLink',
|
||||||
|
];
|
||||||
|
|
||||||
private static $default_sort = "\"Sort\"";
|
private static $default_sort = "\"Sort\"";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -1692,7 +1701,7 @@ class SiteTree extends DataObject implements PermissionProvider, i18nEntityProvi
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Check to see if we've only altered fields that shouldn't affect versioning
|
// Check to see if we've only altered fields that shouldn't affect versioning
|
||||||
$fieldsIgnoredByVersioning = ['HasBrokenLink', 'Status', 'HasBrokenFile', 'ToDo', 'VersionID', 'SaveCount'];
|
$fieldsIgnoredByVersioning = $this->config()->get('fields_ignored_by_versioning') ?? [];
|
||||||
$changedFields = array_keys($this->getChangedFields(true, 2) ?? []);
|
$changedFields = array_keys($this->getChangedFields(true, 2) ?? []);
|
||||||
|
|
||||||
// This more rigorous check is inline with the test that write() does to decide whether or not to write to the
|
// This more rigorous check is inline with the test that write() does to decide whether or not to write to the
|
||||||
|
Loading…
Reference in New Issue
Block a user