function nodewords_extra_update_6107 in Nodewords: D6 Meta Tags 6
Converts the legacy "dc." meta tags to "dcterms." metatags.
File
- nodewords_extra/
nodewords_extra.install, line 41 - Installation file for nodewords_extra.module.
Code
function nodewords_extra_update_6107() {
$ret = array();
$ret[] = update_sql("UPDATE {nodewords} SET name=REPLACE(name, 'dc.', 'dcterms.') WHERE name LIKE 'dc.%'");
return $ret;
}