You are here

function site_map_update_6000 in Site map 6.2

Same name and namespace in other branches
  1. 7 site_map.install \site_map_update_6000()

Delete no longer used variables.

File

./site_map.install, line 20
The install and update code for the site_map module.

Code

function site_map_update_6000() {
  $ret = array();
  $ret[] = update_sql("DELETE FROM {variable} WHERE name LIKE 'site_map_message_%'");
  $ret[] = update_sql("DELETE FROM {variable} WHERE name LIKE 'site_map_show_menus_%'");
  return $ret;
}