diff --git a/scan.php b/scan.php index c055275..881d7a4 100644 --- a/scan.php +++ b/scan.php @@ -142,11 +142,13 @@ switch ($_GET["op"]) { if ($data["DEPLOYMENTS"]["deployments"]=="NONE") echo "There are no deployments.
"; else { foreach ($data["DEPLOYMENTS"] as $service_name => $content) { + $orig_service_name = $service_name; + $service_name = strtolower($service_name); //echo base64_decode($content); if (array_key_exists($service_name,$data["INSTALLED_SERVICES"])) { echo '
'.$service_name.' - '.$content.' - INSTALLED - UNINSTALL - REINSTALL
'; } - else echo '
'.$service_name.' - '.$content.'
'; + else echo '
'.$orig_service_name.' - '.$content.'
'; echo '
'; } }