You are here

function i18n_taxonomy_update_7003 in Internationalization 7

Unset option_list_callback if i18n_taxonomy is disabled.

File

i18n_taxonomy/i18n_taxonomy.install, line 118
Installation file for i18n_taxonomy module.

Code

function i18n_taxonomy_update_7003(&$sandbox) {
  if (!function_exists('i18n_taxonomy_allowed_values')) {
    i18n_taxonomy_disable();
  }
}