🔊 When error during CoreUpdate, show full file path instead of only basename

This commit is contained in:
Pierre Goiffon
2020-10-28 18:32:49 +01:00
parent 97d322a059
commit 906c8855b0

View File

@@ -103,7 +103,7 @@ class FilesIntegrity
$sChecksum = md5($sContent);
if (($iSize != $aFileInfo['size']) || ($sChecksum != $aFileInfo['md5']))
{
throw new FileIntegrityException(Dict::Format('FilesInformation:Error:CorruptedFile', basename($sFile)));
throw new FileIntegrityException(Dict::Format('FilesInformation:Error:CorruptedFile', $sFile));
}
}
// Packed with missing files...