From 5958575c5abc70a90b40051a86c5ec7236303d49 Mon Sep 17 00:00:00 2001 From: Roly Rudy Gutierrez Pinto Date: Fri, 28 Apr 2017 08:11:19 -0400 Subject: [PATCH] HOR-1750 --- .../engine/src/ProcessMaker/Policies/ControlUnderUpdating.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/workflow/engine/src/ProcessMaker/Policies/ControlUnderUpdating.php b/workflow/engine/src/ProcessMaker/Policies/ControlUnderUpdating.php index c5c37e595..78e5dacc1 100644 --- a/workflow/engine/src/ProcessMaker/Policies/ControlUnderUpdating.php +++ b/workflow/engine/src/ProcessMaker/Policies/ControlUnderUpdating.php @@ -30,11 +30,11 @@ class ControlUnderUpdating implements iAuthenticate $sysTemp = $underUpdating['workspace'] == SYS_TEMP; } if ($underUpdating['workspace'] == "true" || $sysTemp) { - $mesage = 'The server is currently unable to handle the request ' + $message = 'The server is currently unable to handle the request ' . 'due to a temporary overloading or maintenance of the ' . 'server (An application update has probably been ' . 'performed on the server).'; - throw new RestException(503, $mesage); + throw new RestException(503, $message); } } return $response;