You are here

function taxonomy_list_update_6100 in Taxonomy List 6

Same name and namespace in other branches
  1. 5.2 taxonomy_list.install \taxonomy_list_update_6100()
  2. 6.2 taxonomy_list.install \taxonomy_list_update_6100()

Implementation of hook_update_N().

File

./taxonomy_list.install, line 11
List the category, specify in the URL

Code

function taxonomy_list_update_6100() {
  $ret = array();
  $current = variable_get('taxonomy_list_add_links', FALSE);
  variable_set('taxonomy_list_edit_link', $current);
  if (module_exists('search')) {
    variable_set('taxonomy_list_search_link', $current);
  }
  variable_del('taxonomy_list_add_links');
  return $ret;
}