You are here

function active_tags_popular_install in Active Tags 6

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

Implementation of hook_install().

File

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

Code

function active_tags_popular_install() {

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