You are here

function active_tags_install in Active Tags 6

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

Implementation of hook_install().

File

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

Code

function active_tags_install() {

  // Increase module weight to prevent compatibility issues.
  $sql = "UPDATE {system}\n          SET weight = 10\n          WHERE name = 'active_tags'";
  db_query($sql);
}