Skip to content
Snippets Groups Projects
Commit 8a3d5a71 authored by Tim van Dijen's avatar Tim van Dijen
Browse files

Fix TypeDoesNotContainType|InvalidArgument

parent f6a20bf4
No related branches found
No related tags found
No related merge requests found
......@@ -318,9 +318,12 @@ class SQL extends Store
}
$value = $row['_value'];
if (is_resource($value)) {
$value = stream_get_contents($value);
}
// if (is_resource($value)) {
// $value = stream_get_contents($value);
// }
Assert::string($value);
$value = urldecode($value);
$value = unserialize($value);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment