You are here

function mailchimp_update_6206 in Mailchimp 7

Same name and namespace in other branches
  1. 6.2 mailchimp.install \mailchimp_update_6206()

Cache blocks with forms per-user.

File

./mailchimp.install, line 88
Install, update and uninstall functions for the mailchimp module.

Code

function mailchimp_update_6206() {
  $return = array();
  $return[] = update_sql("UPDATE {blocks} SET cache = " . DRUPAL_CACHE_PER_USER . " WHERE module = 'mailchimp'");
  return $return;
}