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 3bad491 + 575159b commit 7dd22b0Copy full SHA for 7dd22b0
lib/private/Files/Cache/Cache.php
@@ -585,8 +585,13 @@ private function removeChildren(ICacheEntry $entry) {
585
return $cacheEntry->getPath();
586
}, $children);
587
588
- $deletedIds = array_merge($deletedIds, $childIds);
589
- $deletedPaths = array_merge($deletedPaths, $childPaths);
+ foreach ($childIds as $childId) {
+ $deletedIds[] = $childId;
590
+ }
591
+
592
+ foreach ($childPaths as $childPath) {
593
+ $deletedPaths[] = $childPath;
594
595
596
$query = $this->getQueryBuilder();
597
$query->delete('filecache_extended')
0 commit comments