function metatag_update_7031 in Metatag 7
Rename the 'copyright' meta tag to 'rights', part 2.
File
- ./
metatag.install, line 1984 - Install, update, and uninstall functions for the metatag module.
Code
function metatag_update_7031() {
$old_tag = 'copyright';
$new_tag = 'rights';
return metatag_update_replace_config_tag($old_tag, $new_tag);
}