You are here

function pathauto_update_1 in Pathauto 5.2

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

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

File

./pathauto.install, line 82
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;
}