You are here

function nodewords_update_6179 in Nodewords: D6 Meta Tags 6.2

Implements hook_update_N().

File

./nodewords.install, line 1117
Install, update and uninstall functions for the Nodewords module.

Code

function nodewords_update_6179() {
  $ret = array();
  variable_del('nodewords_enable_checkall');
  $ret[] = array(
    'success' => TRUE,
    'query' => 'Removed obsolete persistent variables',
  );
  return $ret;
}