You are here

function cdn_update_6202 in CDN 6.2

Same name and namespace in other branches
  1. 7.2 cdn.install \cdn_update_6202()

CDN must run after JavaScript aggregator (weight 9999) in fallback mode.

File

./cdn.install, line 296
Install file.

Code

function cdn_update_6202() {
  $ret = array();
  $ret[] = update_sql("UPDATE {system} SET weight = 10000 WHERE name = 'cdn'");

  // update.php runs drupal_rebuild_theme_registry();
  return $ret;
}