Skip to content

Instantly share code, notes, and snippets.

@thelebster
Last active December 13, 2015 19:28
Show Gist options
  • Save thelebster/4962478 to your computer and use it in GitHub Desktop.
Save thelebster/4962478 to your computer and use it in GitHub Desktop.
<?php
function MYMODULE_preprocess_html(&$vars) {
/**
* Disable Skype phone highlighting in Internet Explorer.
* Add meta: <meta name="SKYPE_TOOLBAR" content="SKYPE_TOOLBAR_PARSER_COMPATIBLE" />
* @see http://bacsoftwareconsulting.com/blog/index.php/web-development/prevent-skype-from-highlighting-phone-numbers/
*/
$meta = array(
'#type' => 'html_tag',
'#tag' => 'meta',
'#attributes' => array(
'name' => 'SKYPE_TOOLBAR',
'content' => 'SKYPE_TOOLBAR_PARSER_COMPATIBLE',
)
);
drupal_add_html_head($meta, 'SKYPE_TOOLBAR');
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment