You are here

function metatag_update_7110 in Metatag 7

Rename the 'icon_any' meta tag to 'mask-icon' in the configs.

File

./metatag.install, line 2590
Install, update, and uninstall functions for the metatag module.

Code

function metatag_update_7110() {
  module_load_include('install', 'metatag');
  $old_tag = 'icon_any';
  $new_tag = 'mask-icon';
  return metatag_update_replace_config_tag($old_tag, $new_tag);
}