function system_update_8039

Convert css and js gzip compression variables to config.

Related topics

File

drupal/core/modules/system/system.install, line 1825
Install, update and uninstall functions for the system module.

Code

function system_update_8039() {
  $variable_map = array(
    'css_gzip_compression' => 'css.gzip',
    'js_gzip_compression' => 'js.gzip',
  );
  update_variables_to_config('system.performance', $variable_map);
}