Add tooltip

This commit is contained in:
phl0
2024-05-08 13:36:36 +02:00
parent 43dce0211f
commit 331c3defe0

View File

@@ -69,7 +69,7 @@
<td>
<?php
if (version_compare(phpversion(), '8', '<')) {
echo "<span class=\"badge text-bg-warning\">".phpversion()."</span>";
echo "<span data-bs-toggle=\"tooltip\" title=\"Deprecated. Please update!\" class=\"badge text-bg-warning\">".phpversion()."</span>";
} else {
echo "<span class=\"badge text-bg-success\">".phpversion()."</span>";
}