Skip to content

Commit

Permalink
replacing Quetto icons with Tabler
Browse files Browse the repository at this point in the history
  • Loading branch information
twoln committed Apr 3, 2024
1 parent ae0eb0f commit d29431e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/user/about_cat.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,12 @@
foreach (\core\common\EAP::listKnownEAPTypes() as $oneeap) {
$out .= "<td>";
if (in_array($oneeap->getArrayRep(), $device_instance->device->supportedEapMethods)) {
$check = $skinObject->findResourceUrl("IMAGES", "icons/Quetto/check-icon.png");
$check = $skinObject->findResourceUrl("IMAGES", "icons/Tabler/square-rounded-check-filled-green.svg");
if ($check !== FALSE) {
$out .= "<img src='$check' alt='SUPPORTED'>";
}
} else {
$not = $skinObject->findResourceUrl("IMAGES", "icons/Quetto/no-icon.png");
$not = $skinObject->findResourceUrl("IMAGES", "icons/Tabler/square-rounded-x-filled-red.svg");
if ($not !== FALSE) {
$out .= "<img src='$not' alt='UNSUPPORTED'>";
}
Expand Down

0 comments on commit d29431e

Please sign in to comment.