You are here

function nodewords_update_6184 in Nodewords: D6 Meta Tags 6

Inform users that the module has changed regarding deciding which tags are output to now automatically output all non-empty tags.

File

./nodewords.install, line 1708
Installation file for nodewords.module.

Code

function nodewords_update_6184() {
  $ret = array();
  drupal_set_message(t('The Nodewords module will now automatically output all tags that are not empty.'));
  variable_del('nodewords_head');
  return $ret;
}