From: Roland Haeder Date: Mon, 11 May 2015 22:34:08 +0000 (+0200) Subject: This constant is now no longer available through "self" from these classes. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=4687ec897686978dd5d74255c5cbb6038ccb13d2;p=hub.git This constant is now no longer available through "self" from these classes. Signed-off-by: Roland Haeder --- diff --git a/application/hub/main/handler/message-types/class_BaseMessageHandler.php b/application/hub/main/handler/message-types/class_BaseMessageHandler.php index 5cf47cc1d..d04acc1f7 100644 --- a/application/hub/main/handler/message-types/class_BaseMessageHandler.php +++ b/application/hub/main/handler/message-types/class_BaseMessageHandler.php @@ -41,7 +41,7 @@ abstract class BaseMessageHandler extends BaseDataHandler { */ protected function getTranslatedStatusFromLastException () { // Default is all fine - $statusCode = self::MESSAGE_STATUS_CODE_OKAY; + $statusCode = BaseHubSystem::MESSAGE_STATUS_CODE_OKAY; // Is the last exception not NULL? if ($this->getLastException() instanceof FrameworkException) {