function system_update_8052

Move image toolkit settings from variable to config.

Related topics

File

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

Code

function system_update_8052() {
  update_variables_to_config('system.image', array(
    'image_toolkit' => 'toolkit',
  ));
  update_variables_to_config('system.image.gd', array(
    'image_jpeg_quality' => 'jpeg_quality',
  ));
}