You are here

function url_alter_update_6000 in URL alter 6

Set an even lower module weight to make sure we are included first.

Related topics

File

./url_alter.install, line 65
Install and uninstall schema and functions for the url_alter module.

Code

function url_alter_update_6000() {
  $ret = array();
  $ret[] = update_sql("UPDATE {system} SET weight = -1000 WHERE type = 'module' AND name = 'url_alter'");
  return $ret;
}