You are here

function auto_nodetitle_update_1 in Automatic Nodetitles 6

Same name and namespace in other branches
  1. 8 auto_nodetitle.install \auto_nodetitle_update_1()
  2. 5 auto_nodetitle.install \auto_nodetitle_update_1()

make sure hooks are invoked after cck main hooks

File

./auto_nodetitle.install, line 24

Code

function auto_nodetitle_update_1() {
  $ret = array();
  $ret[] = update_sql("UPDATE {system} SET weight = 5 WHERE name = 'auto_nodetitle'");
  return $ret;
}