You are here

function javascript_aggregator_update_6120 in Javascript Aggregator 6

Set module's weight high so that it runs after other modules.

File

./javascript_aggregator.install, line 19
Install, update and uninstall functions for the javascript_aggregator module.

Code

function javascript_aggregator_update_6120() {
  $ret = array();
  $ret[] = update_sql("UPDATE {system} SET weight = 9999 WHERE name = 'javascript_aggregator' AND type = 'module'");
  cache_clear_all();
  return $ret;
}