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 69af641 + bc7f4b5 commit 421e4deCopy full SHA for 421e4de
1 file changed
lib/private/Repair/RemoveBrokenProperties.php
@@ -38,7 +38,7 @@ public function run(IOutput $output): void {
38
$brokenIds = [];
39
while ($entry = $result->fetch()) {
40
if (!empty($entry['propertyvalue'])) {
41
- $object = @unserialize(str_replace('\x00', chr(0), $entry['propertyvalue']));
+ $object = @unserialize(str_replace('\x00', chr(0), $entry['propertyvalue']), ['allowed_classes' => false]);
42
if ($object === false) {
43
$brokenIds[] = $entry['id'];
44
}
0 commit comments