diff --git a/link.module b/link.module
index b5a42ab..c1e96ae 100644
--- a/link.module
+++ b/link.module
@@ -514,7 +514,7 @@ function _link_sanitize(&$item, $delta, &$field, $instance, &$entity) {
     else {
       $entity_loaded = $entity;
     }
-    $title = filter_xss(token_replace($title, array($entity_token_type => $entity_loaded)),
+    $title = filter_xss(token_replace($title, array($entity_token_type => $entity_loaded), array('clear' => true)),
                         array('b', 'br', 'code', 'em', 'i', 'img', 'span', 'strong', 'sub', 'sup', 'tt', 'u'));
     $item['html'] = TRUE;
   }
@@ -572,7 +572,7 @@ function _link_sanitize(&$item, $delta, &$field, $instance, &$entity) {
     else {
       $entity_loaded = $entity;
     }
-    $item['attributes']['title'] = filter_xss(token_replace($item['attributes']['title'], array($entity_token_type => $entity_loaded)),
+    $item['attributes']['title'] = filter_xss(token_replace($item['attributes']['title'], array($entity_token_type => $entity_loaded), array('clear' => true)),
                         array('b', 'br', 'code', 'em', 'i', 'img', 'span', 'strong', 'sub', 'sup', 'tt', 'u'));
   }
   // Remove title attribute if it's equal to link text.
