You are here

function pathauto_update_1 in Pathauto 6

Same name and namespace in other branches
  1. 5.2 pathauto.install \pathauto_update_1()
  2. 6.2 pathauto.install \pathauto_update_1()

Set the weight a little heavier to allow taxonomy to do its work.

File

./pathauto.install, line 71
Install, update, and uninstall functions for Pathauto.

Code

function pathauto_update_1() {
  $ret = array();
  $ret[] = update_sql("UPDATE {system} SET weight = 1 WHERE name = 'pathauto'");
  return $ret;
}