Skip to content
Snippets Groups Projects
Commit fe713025 authored by Jan Kellermann's avatar Jan Kellermann Committed by Jakob P
Browse files

Issue #3462448: error=[37]ITEM TOO BIG, script tried to access a property on...

Issue #3462448: error=[37]ITEM TOO BIG, script tried to access a property on an incomplete object, and Call to a member function set() on null after 8.x-2.6 upgrade
parent 31091e16
No related branches found
No related tags found
1 merge request!34Revert cb11e235: Allow classes in serialization. It may be unsafe, but classes...
Pipeline #254105 passed
......@@ -304,7 +304,9 @@ class MemcacheBackend implements CacheBackendInterface {
* The combined an unserialized value that was originally stored.
*/
private function combineItems(array $items) {
return unserialize(implode(array_column($items, 'data')), ['allowed_classes' => FALSE]);
// phpcs:disable
return unserialize(implode(array_column($items, 'data')));
// phpcs:enable
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment