You are here

function mobile_tools_update_6202 in Mobile Tools 6.2

Update Mobile Tools' module weight.

File

./mobile_tools.install, line 120
Mobile Tools's install and uninstall code.

Code

function mobile_tools_update_6202() {
  $ret = array();

  // Assign Mobile Tools a heavy weight so it runs after other modules
  db_query("UPDATE {system} SET weight = 50 WHERE name = 'mobile_tools'");
  return $ret;
}