Skip to content

Commit

Permalink
fix broken tooltip when loading a ticket preview (ticket listing)
Browse files Browse the repository at this point in the history
fixes #18680
  • Loading branch information
SebSept authored Jan 16, 2025
1 parent 376eb22 commit 83f72ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Html.php
Original file line number Diff line number Diff line change
Expand Up @@ -3383,7 +3383,7 @@ class='dropdown_tooltip {$param['link_class']}'";
if (!is_null($param['url'])) {
$js .= "
ajax: {
url: '" . htmlescape($CFG_GLPI['root_doc'] . $param['url']) . "',
url: " . json_encode($CFG_GLPI['root_doc'] . $param['url']) . ",
type: 'GET',
data: {},
},
Expand Down

0 comments on commit 83f72ad

Please sign in to comment.