You are here

function metatag_opengraph_update_7104 in Metatag 7

Rename the 'og:video' meta tag to 'og:video:url' in the configs.

File

metatag_opengraph/metatag_opengraph.install, line 99
Installation and update scripts for Metatag:OpenGraph.

Code

function metatag_opengraph_update_7104() {
  module_load_include('install', 'metatag');
  $old_tag = 'og:video';
  $new_tag = 'og:video:url';
  return metatag_update_replace_config_tag($old_tag, $new_tag);
}