diff --git a/frontend/module.vps.password.php b/frontend/module.vps.password.php index 0a03c4e..8ba1bf9 100644 --- a/frontend/module.vps.password.php +++ b/frontend/module.vps.password.php @@ -47,7 +47,7 @@ if(isset($_POST['submit'])) } catch (ContainerTerminatedException $e) { - $err = new CPHPErrorHandler(CPHP_ERRORHANDLER_TYPE_ERROR, "Failed to configure root password", "You can not configure the root password for this VPS, because it is suspended. If you believe this is in error, please contact support."); + $err = new CPHPErrorHandler(CPHP_ERRORHANDLER_TYPE_ERROR, "Failed to configure root password", "You can not configure the root password for this VPS, because it has been terminated."); $sPageContents .= $err->Render(); } catch (SshExitException $e) diff --git a/frontend/module.vps.reinstall.php b/frontend/module.vps.reinstall.php index 092acc9..740aa45 100644 --- a/frontend/module.vps.reinstall.php +++ b/frontend/module.vps.reinstall.php @@ -68,7 +68,7 @@ if(isset($_POST['submit'])) } catch (ContainerTerminatedException $e) { - $err = new CPHPErrorHandler(CPHP_ERRORHANDLER_TYPE_ERROR, "Reinstallation aborted", "You can not reinstall this VPS, because it is suspended. If you believe this is in error, please contact support."); + $err = new CPHPErrorHandler(CPHP_ERRORHANDLER_TYPE_ERROR, "Reinstallation aborted", "You can not reinstall this VPS, because it has been terminated."); $sPageContents .= $err->Render(); } }