You are here

function taxonomy_access_update_3 in Taxonomy Access Control 5.2

Same name and namespace in other branches
  1. 5 taxonomy_access.install \taxonomy_access_update_3()

File

./taxonomy_access.install, line 52

Code

function taxonomy_access_update_3() {

  // new module weights in core: put taxonomy_access to the bottom (but before the very last ones) in the chain.
  $ret[] = update_sql("UPDATE {system} SET weight = 9 WHERE name = 'taxonomy_access'");
  return $ret;
}