function pathauto_update_1 in Pathauto 6
Same name and namespace in other branches
- 5.2 pathauto.install \pathauto_update_1()
- 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;
}