Skip to content
Snippets Groups Projects

Issue #3421466: Splits: Ensure config_ignore works for everyone - set default to functional value

1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -88,7 +88,7 @@ class ConfigIgnoreEventSubscriber implements EventSubscriberInterface, CacheTags
@@ -88,7 +88,7 @@ class ConfigIgnoreEventSubscriber implements EventSubscriberInterface, CacheTags
*/
*/
public static function getSubscribedEvents(): array {
public static function getSubscribedEvents(): array {
return [
return [
ConfigEvents::STORAGE_TRANSFORM_IMPORT => ['onImportTransform', Settings::get('config_ignore_import_priority', 0)],
ConfigEvents::STORAGE_TRANSFORM_IMPORT => ['onImportTransform', Settings::get('config_ignore_import_priority', -1)],
ConfigEvents::STORAGE_TRANSFORM_EXPORT => ['onExportTransform', Settings::get('config_ignore_export_priority', 0)],
ConfigEvents::STORAGE_TRANSFORM_EXPORT => ['onExportTransform', Settings::get('config_ignore_export_priority', 0)],
];
];
}
}
Loading