From: Roland Haeder Date: Mon, 11 May 2015 22:28:42 +0000 (+0200) Subject: A little backward-compatiblity ... X-Git-Url: https://git.mxchange.org/?p=core.git;a=commitdiff_plain;h=be65e8b394b142696c4a72b5945cd2a3e6d3585c A little backward-compatiblity ... Signed-off-by: Roland Häder --- diff --git a/inc/classes/main/class_BaseFrameworkSystem.php b/inc/classes/main/class_BaseFrameworkSystem.php index 2b2d2683..3f3e6f7a 100644 --- a/inc/classes/main/class_BaseFrameworkSystem.php +++ b/inc/classes/main/class_BaseFrameworkSystem.php @@ -279,7 +279,7 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface { * * The integer size is 4 bytes on 32-bit and 8 bytes on a 64-bit system. */ - private $archArrayElement = (PHP_INT_SIZE === 8 ? 64 : 32); + private $archArrayElement = FALSE; /*********************** * Exception codes.... * @@ -415,6 +415,9 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface { // Then set it self::$startupTime = microtime(TRUE); } // END - if + + // Set array element + $this->archArrayElement = (PHP_INT_SIZE === 8 ? 64 : 32); } /**