diff --git a/manage.html b/manage.html
index eeedb26..b26a86a 100644
--- a/manage.html
+++ b/manage.html
@@ -316,7 +316,10 @@ function check_uninstall(additional) {
if (data!="OK") {
setTimeout(check_uninstall, 1000, additional);
}
- else jQuery("#"+additional).html('Uninstall has finished');
+ else {
+ jQuery("#"+additional).html('Uninstall has finished');
+ get_deployments();
+ }
});
}
diff --git a/scan.php b/scan.php
index dcfa924..5ba5351 100644
--- a/scan.php
+++ b/scan.php
@@ -232,6 +232,7 @@ switch ($_GET["op"]) {
}
elseif ($data["STATUS"]=="2") { // deploy
echo "Install has finished.";
+ echo "";
}
remove_response("$key");
}
@@ -248,6 +249,7 @@ switch ($_GET["op"]) {
}
elseif ($data["STATUS"]=="2") {
echo "Install has finished.";
+ echo "";
remove_response("$key"); // remove from output if finished so reinstall can start
}
}
@@ -319,6 +321,7 @@ switch ($_GET["op"]) {
}
elseif ($data["STATUS"]=="2") {
echo "Install has finished...";
+ echo "";
remove_response("$key");
}
}