From 81fbc762e1dd894060f110da8f9ee244a53fa6b0 Mon Sep 17 00:00:00 2001 From: Roland Haeder Date: Sat, 31 May 2014 13:49:25 +0200 Subject: [PATCH] Fixed: Fatal error: Access to undeclared static property: BaseFrameworkSystem::$hashLength MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Roland Häder --- inc/classes/main/class_BaseFrameworkSystem.php | 5 +++++ inc/classes/main/file_directories/class_BaseFile.php | 5 ----- 2 files changed, 5 insertions(+), 5 deletions(-) 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 */ -- 2.39.2