You are here

function dynamic_background_panels_update_6001 in Dynamic Background 6

Update module weight to handle modules as less.

File

modules/dynamic_background_panels/dynamic_background_panels.install, line 28
Handles install and uninstall of the module.

Code

function dynamic_background_panels_update_6001() {
  $ret = array();
  $ret[] = update_sql("UPDATE {system} SET weight = 220 WHERE type = 'module' AND name = 'dynamic_background_panels'");
  return $ret;
}