You are here

function active_tags_update_6101 in Active Tags 6

Same name and namespace in other branches
  1. 6.2 active_tags.install \active_tags_update_6101()

Update from 1.7 to 1.8.

File

./active_tags.install, line 32
Install & uninstall functions.

Code

function active_tags_update_6101() {
  $ret = array();
  $sql = "UPDATE {system}\n          SET weight = 10\n          WHERE name = 'active_tags'";
  $ret[] = update_sql($sql);
  return $ret;
}