You are here

function metatag_twitter_cards_update_7100 in Metatag 7

Rename the 'twitter:image:src' meta tag back to 'twitter:image'. Sorry.

File

metatag_twitter_cards/metatag_twitter_cards.install, line 36
Update scripts for the Metatag: Twitter Cards module.

Code

function metatag_twitter_cards_update_7100(&$sandbox) {
  module_load_include('install', 'metatag');
  $old_tag = 'twitter:image:src';
  $new_tag = 'twitter:image';
  return metatag_update_replace_entity_tag($sandbox, $old_tag, $new_tag);
}