diff --git a/src/UnicaenAuth/View/Helper/UserCurrent.php b/src/UnicaenAuth/View/Helper/UserCurrent.php
index df16b7a4ee7729d6f4a846cbcfa4097c8a475214..1875516a9f4e83d4dd55039ab872396a438c45bb 100644
--- a/src/UnicaenAuth/View/Helper/UserCurrent.php
+++ b/src/UnicaenAuth/View/Helper/UserCurrent.php
@@ -76,7 +76,6 @@ class UserCurrent extends UserAbstract
    title="$title" 
    data-placement="bottom" 
    data-toggle="popover" 
-   data-html="true" 
    data-content="$content" 
    href="#">$status</a>
 EOS;
@@ -84,7 +83,7 @@ EOS;
         
         $js = <<<EOS
 $(function() {
-    $("#$id").popover({ html: true, container: '#navbar' });
+    $("#$id").popover({ html: true, sanitize: false, container: '#navbar' });
 });
 EOS;
         $this->getView()->plugin('inlineScript')->offsetSetScript(1000, $js);