function mailchimp_update_6200 in Mailchimp 7
Same name and namespace in other branches
- 6.2 mailchimp.install \mailchimp_update_6200()
Implements hook_update_N().
File
- ./
mailchimp.install, line 28 - Install, update and uninstall functions for the mailchimp module.
Code
function mailchimp_update_6200() {
// clean up old variables
$ret = array();
$ret[] = update_sql("DELETE FROM {variable} WHERE name like 'mailchimp_list\\_%'");
cache_clear_all();
return $ret;
}