We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 208ca0f + c919537 commit 7d4b31cCopy full SHA for 7d4b31c
1 file changed
lib/private/Repair/RemoveBrokenProperties.php
@@ -37,7 +37,7 @@ public function run(IOutput $output): void {
37
$brokenIds = [];
38
while ($entry = $result->fetch()) {
39
if (!empty($entry['propertyvalue'])) {
40
- $object = @unserialize(str_replace('\x00', chr(0), $entry['propertyvalue']));
+ $object = @unserialize(str_replace('\x00', chr(0), $entry['propertyvalue']), ['allowed_classes' => false]);
41
if ($object === false) {
42
$brokenIds[] = $entry['id'];
43
}
0 commit comments