function metatag_update_7026 in Metatag 7
Rename the 'copyright' meta tag to 'rights', part 1.
File
- ./
metatag.install, line 1941 - Install, update, and uninstall functions for the metatag module.
Code
function metatag_update_7026(array &$sandbox) {
$old_tag = 'copyright';
$new_tag = 'rights';
return metatag_update_replace_entity_tag($sandbox, $old_tag, $new_tag);
}