You are here

function htmlmail_update_6204 in HTML Mail 6.2

Implements hook_update_N().

See also

htmlmail_requirements()

File

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

Code

function htmlmail_update_6204() {
  if ($requirements = htmlmail_requirements('runtime')) {
    $requirement = array_shift($requirements);
    return array(
      '#abort' => array(
        'success' => FALSE,
        'query' => $requirement['description'],
      ),
    );
  }
  return array();
}