function nodewords_update_6103 in Nodewords: D6 Meta Tags 6
Same name and namespace in other branches
- 6.2 nodewords.install \nodewords_update_6103()
Implements hook_update_N().
File
- ./
nodewords.install, line 358 - Installation file for nodewords.module.
Code
function nodewords_update_6103() {
$ret = array();
$ret[] = update_sql("UPDATE {nodewords} SET name = 'revisit-after' WHERE name = 'Revisit-After'");
$ret[] = update_sql("UPDATE {nodewords} SET name = 'dc.title' WHERE name = 'DC.Title'");
$ret[] = update_sql("UPDATE {nodewords} SET type = 'frontpage' WHERE type = 'page' AND id = ''");
return $ret;
}