You are here

function globalredirect_update_1 in Global Redirect 5

This update changes Global Redirect to run as the last hook - this is important to make sure all other modules have had their say first.

File

./globalredirect.install, line 32
This is the GlobalRedirect install file which configures the system during install.

Code

function globalredirect_update_1() {
  $ret = array();
  $ret[] = update_sql("UPDATE {system} SET weight = 1500 WHERE name = 'globalredirect'");
  return $ret;
}