You are here

function htmlmail_update_6202 in HTML Mail 6.2

Implements hook_update_N().

Increase module weight so dependent modules get loaded first.

1 call to htmlmail_update_6202()
htmlmail_install in ./htmlmail.install
Implements hook_install().

File

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

Code

function htmlmail_update_6202() {
  return array(
    update_sql("UPDATE {system} SET weight = 10 WHERE type = 'module' AND name = 'htmlmail'"),
  );
}