You are here

function active_tags_popular_update_6101 in Active Tags 6

Same name and namespace in other branches
  1. 6.2 active_tags_popular.install \active_tags_popular_update_6101()

Update from 1.8 to 1.9.

File

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

Code

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