You are here

function mailchimp_update_6205 in Mailchimp 6.2

Implementation of hook_update_N().

Bump up the module weight to ensure all merge fields are accounted for.

1 call to mailchimp_update_6205()
mailchimp_install in ./mailchimp.install
Implementation of hook_install().

File

./mailchimp.install, line 130

Code

function mailchimp_update_6205() {
  $ret = array();
  $ret[] = update_sql("UPDATE {system} SET weight = 10 WHERE name = 'mailchimp' and type = 'module'");
  return $ret;
}