diff --git a/core/modules/system/config/schema/system.schema.yml b/core/modules/system/config/schema/system.schema.yml index 857e59f..4f3625b 100644 --- a/core/modules/system/config/schema/system.schema.yml +++ b/core/modules/system/config/schema/system.schema.yml @@ -256,9 +256,6 @@ system.performance: stale_file_threshold: type: integer label: 'Stale file threshold' - theme_link: - type: boolean - label: 'Force inline link rendering' system.rss: type: mapping diff --git a/core/modules/system/config/system.performance.yml b/core/modules/system/config/system.performance.yml index 28c4d86..67e82cf 100644 --- a/core/modules/system/config/system.performance.yml +++ b/core/modules/system/config/system.performance.yml @@ -16,4 +16,3 @@ js: response: gzip: false stale_file_threshold: 2592000 -theme_link: true diff --git a/core/modules/system/system.install b/core/modules/system/system.install index 697cbba..3c5e9d0 100644 --- a/core/modules/system/system.install +++ b/core/modules/system/system.install @@ -1876,17 +1876,6 @@ function system_update_8042() { } /** - * Move system theme settings from variable to config. - * - * @ingroup config_upgrade - */ -function system_update_8043() { - update_variables_to_config('system.performance', array( - 'theme_link' => 'theme_link', - )); -} - -/** * Move system fast 404 settings from variable to config. * * @ingroup config_upgrade