Skip to content

Instantly share code, notes, and snippets.

@MetaDone
Created December 16, 2015 10:14
Show Gist options
  • Save MetaDone/05b6931b1c97d7a2dc03 to your computer and use it in GitHub Desktop.
Save MetaDone/05b6931b1c97d7a2dc03 to your computer and use it in GitHub Desktop.
fix glpi description ticket tooltip
line #3670
$out .= "<div id='".$param['contentid']."' class='invisible'>$content</div>";
replace to
if ($param['link'] == "") {
$out .="<p>" . $content . "</p>";
return $out;
} else {
$out .= "<div id='" . $param['contentid'] . "' class='invisible'>$content</div>";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment