A little backward-compatiblity ...
[core.git] / inc / classes / main / class_BaseFrameworkSystem.php
index 2b2d2683109df9c224f0d4d788370e09248010f1..3f3e6f7a779e7d06882c5871cfb3e24c5fcded7e 100644 (file)
@@ -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);
        }
 
        /**