You are here

function taxonomy_list_update_5101 in Taxonomy List 5

Implementation of hook_update_N().

File

./taxonomy_list.install, line 22
List the category specified in the URL

Code

function taxonomy_list_update_5101() {
  $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;
}