From 9e8c7b7da84c044fa28ae7d807142d7f48b2a8b6 Mon Sep 17 00:00:00 2001 From: Sven Slootweg Date: Mon, 8 Oct 2012 18:38:58 +0200 Subject: [PATCH] Fix typo in exception name --- frontend/submodule.stop.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/submodule.stop.php b/frontend/submodule.stop.php index ff2724f..4d6d249 100644 --- a/frontend/submodule.stop.php +++ b/frontend/submodule.stop.php @@ -23,7 +23,7 @@ if($sContainer->sCurrentStatus != CVM_STATUS_STOPPED) $err = new CPHPErrorHandler(CPHP_ERRORHANDLER_TYPE_SUCCESS, $locale->strings['error-stop-success-title'], $locale->strings['error-stop-success-text']); $sError .= $err->Render(); } - catch(ContainerStartException $e) + catch(ContainerStopException $e) { $err = new CPHPErrorHandler(CPHP_ERRORHANDLER_TYPE_ERROR, $locale->strings['error-stop-failed-title'], $locale->strings['error-stop-failed-text']); $sError .= $err->Render();