Merge branch 'ent-8104-bug-delete-files-update-manager' into 'develop'

Fix delete files issue

See merge request artica/pandorafms!4472
This commit is contained in:
Daniel Rodriguez 2021-10-18 08:18:31 +00:00
commit cd73f534f9
1 changed files with 1 additions and 1 deletions

View File

@ -1270,7 +1270,7 @@ class Client
}
$content = file_get_contents($delete_files_txt);
$files = explode('\n', $content);
$files = explode("\n", $content);
$processed = [];
foreach ($files as $file) {
$file = trim(str_replace("\0", '', $this->productPath.'/'.$file));