You are here

function htmlmail_update_6200 in HTML Mail 6.2

Implements hook_update_N().

Removes variables that are no longer used.

File

./htmlmail.install, line 70
Installation for HTML Mail module.

Code

function htmlmail_update_6200() {
  variable_del('htmlmail_header');
  variable_del('htmlmail_footer');
  variable_del('htmlmail_css');
  return array();
}