You are here

function autoload_update_6001 in Autoload 6

Same name and namespace in other branches
  1. 6.2 autoload.install \autoload_update_6001()

Set a low module weight to ensure this module is enabled before those that depend on it.

File

./autoload.install, line 15

Code

function autoload_update_6001() {
  db_query("UPDATE {system} SET weight = -100 WHERE name = 'autoload' AND type = 'module'");
  return array();
}