diff options
| author | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2024-12-03 08:18:35 +0000 |
|---|---|---|
| committer | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2024-12-03 09:19:17 +0100 |
| commit | b8eada4bb3ef6217632535d06b44cf3e3ca776e1 (patch) | |
| tree | 7b189d8b1a0826ddbb3ea8b90e8d5b23d72d86eb /lib/visual.inc.php | |
| parent | fecd8e9268e0e968023808f02f8aad485f2ce90b (diff) | |
fix parameters for tooltipHtmlIcon(), fixes #4947
Closes #4947
Merge request studip/studip!3711
Diffstat (limited to 'lib/visual.inc.php')
| -rw-r--r-- | lib/visual.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/visual.inc.php b/lib/visual.inc.php index 572c48e..f070752 100644 --- a/lib/visual.inc.php +++ b/lib/visual.inc.php @@ -637,7 +637,7 @@ function tooltipIcon($text, $important = false, $html = false): string */ function tooltipHtmlIcon(string $text, bool $important = false) { - return tooltipIcon($text, true, $important); + return tooltipIcon($text, $important, true); } /** |
