You are here

function mass_contact_update_6001 in Mass Contact 6

Implementation of hook_update().

Changes a database field name to match the code that's using it.

File

./mass_contact.install, line 109
This is the un/install file for the Mass Contact module.

Code

function mass_contact_update_6001() {
  $ret = array();
  $ret[] = update_sql("UPDATE {variable} SET name = 'mass_contact_html_d' WHERE name = 'mass_contact_HTML_d'");
  return $ret;
}