Last active
December 13, 2015 19:28
-
-
Save thelebster/4962478 to your computer and use it in GitHub Desktop.
Disable Skype phone highlighting in Internet Explorer. http://bacsoftwareconsulting.com/blog/index.php/web-development/prevent-skype-from-highlighting-phone-numbers
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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