function taxonomy_access_update_3 in Taxonomy Access Control 5
Same name and namespace in other branches
- 5.2 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;
}