You are here

function metatag_opengraph_update_7103 in Metatag 7

Change og:video to og:video:url in all metatags.

File

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

Code

function metatag_opengraph_update_7103(&$sandbox) {
  module_load_include('install', 'metatag');
  $old_tag = 'og:video';
  $new_tag = 'og:video:url';
  return metatag_update_replace_entity_tag($sandbox, $old_tag, $new_tag);
}