From: Roland Haeder Date: Sat, 31 May 2014 11:49:25 +0000 (+0200) Subject: Fixed: Fatal error: Access to undeclared static property: BaseFrameworkSystem::$hashL... X-Git-Url: https://git.mxchange.org/?p=core.git;a=commitdiff_plain;h=81fbc762e1dd894060f110da8f9ee244a53fa6b0;hp=7b2f569591ed4203e92af9575ebbd39e6e8758d8 Fixed: Fatal error: Access to undeclared static property: BaseFrameworkSystem::$hashLength Signed-off-by: Roland Häder --- diff --git a/inc/classes/main/class_BaseFrameworkSystem.php b/inc/classes/main/class_BaseFrameworkSystem.php index 40ad97b1..02e04fe1 100644 --- a/inc/classes/main/class_BaseFrameworkSystem.php +++ b/inc/classes/main/class_BaseFrameworkSystem.php @@ -23,6 +23,11 @@ * along with this program. If not, see . */ class BaseFrameworkSystem extends stdClass implements FrameworkInterface { + /** + * Length of output from hash() + */ + private static $hashLength = NULL; + /** * The real class name */ diff --git a/inc/classes/main/file_directories/class_BaseFile.php b/inc/classes/main/file_directories/class_BaseFile.php index a625624e..806745d1 100644 --- a/inc/classes/main/file_directories/class_BaseFile.php +++ b/inc/classes/main/file_directories/class_BaseFile.php @@ -79,11 +79,6 @@ class BaseFile extends BaseFrameworkSystem { */ const GAPS_INDEX_END = 'end'; - /** - * Length of output from hash() - */ - private static $hashLength = NULL; - /** * Counter for total entries */