function taxonomy_list_update_6101 in Taxonomy List 5.2
Same name and namespace in other branches
- 6.2 taxonomy_list.install \taxonomy_list_update_6101()
Implementation of hook_update_N().
File
- ./
taxonomy_list.install, line 26 - List the category, specify in the URL
Code
function taxonomy_list_update_6101() {
$ret = array();
variable_del('taxonomy_list_image_link');
$ret[] = array(
'success' => TRUE,
'query' => "variable_del('taxonomy_list_image_link')",
);
return $ret;
}