function taxonomy_update_8004

Moves taxonomy settings from variable to config.

File

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

Code

function taxonomy_update_8004() {
  update_variables_to_config('taxonomy.settings', array(
    'taxonomy_override_selector' => 'override_selector',
    'taxonomy_terms_per_page_admin' => 'terms_per_page_admin',
    'taxonomy_maintain_index_table' => 'maintain_index_table',
  ));
}