From 0a6b81dde16619b6d4466cca1ff8ad52226e9384 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Tue, 30 May 2017 13:51:09 +0200 Subject: [PATCH] Unsupported array found, maybe later add a call-backable class here, for now at least the array keys are taken into final hash. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Roland Häder --- framework/main/classes/lists/class_BaseList.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/framework/main/classes/lists/class_BaseList.php b/framework/main/classes/lists/class_BaseList.php index 3c728320..df6e7c08 100644 --- a/framework/main/classes/lists/class_BaseList.php +++ b/framework/main/classes/lists/class_BaseList.php @@ -312,8 +312,8 @@ class BaseList extends BaseFrameworkSystem implements IteratorAggregate, Countab // Unsupported type detected self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('BASE-LIST[' . __METHOD__ . ':' . __LINE__ . ']: Entry type ' . gettype($entry) . ' is unsupported.'); - // @TODO Extend this somehow? - $entry2 = gettype($entry); + // At least take all keys from array + $entry2 = gettype($entry) . ':' . implode(':', array_keys($entry)); } // Construct string which we shall hash -- 2.30.2