diff --git a/scan.php b/scan.php
index 054102e..7023fd3 100644
--- a/scan.php
+++ b/scan.php
@@ -76,7 +76,7 @@ switch ($_GET["op"]) {
else {
foreach ($data["DEPLOYMENTS"] as $service_name => $content) {
//echo base64_decode($content);
- echo '
';
+ echo ''.$service_name.' - '.$content.(array_key_exists($service_name,$data["INSTALLED_SERVICES"]) ? " - INSTALLED" : "").'
';
echo '';
}
}
@@ -84,6 +84,7 @@ switch ($_GET["op"]) {
else echo "There are no deployments.
";
if (count($data["INSTALLED_SERVICES"])) {
+ echo "
Installed services:
";
if ($data["INSTALLED_SERVICES"]["services"]=="NONE") echo "There are no installed services.
";
else {
foreach ($data["INSTALLED_SERVICES"] as $service_name => $content) {