running containers
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2024-09-12 12:22:10 +00:00
parent c56e700abd
commit 6baf579fcf

View File

@@ -73,9 +73,10 @@ switch ($_GET["op"]) {
if ($key=="services") { if ($key=="services") {
if ($data["INSTALL_STATUS"]==2) echo "NEW"; if ($data["INSTALL_STATUS"]==2) echo "NEW";
elseif ($data["INSTALL_STATUS"]==1) { elseif ($data["INSTALL_STATUS"]==1) {
foreach ($data["INSTALLED_SERVICES"] as $service_name => $content) { foreach ($data["INSTALLED_SERVICES"] as $service_name => $object) {
//echo base64_decode($content); //echo base64_decode($object->content);
echo $service_name."<br>"; echo $service_name."<br>";
echo $object->running."<br>";
} }
echo "<br>"; echo "<br>";
} }