Merge branch 'CheckFileExistsBeforeZip' of https://github.com/mannes/h5p-php-library into mannes-CheckFileExistsBeforeZip
commit
d4c90e716d
|
@ -1610,8 +1610,10 @@ Class H5PExport {
|
||||||
foreach ($files as $file) {
|
foreach ($files as $file) {
|
||||||
// Please note that the zip format has no concept of folders, we must
|
// Please note that the zip format has no concept of folders, we must
|
||||||
// use forward slashes to separate our directories.
|
// use forward slashes to separate our directories.
|
||||||
|
if (file_exists(realpath($file->absolutePath))) {
|
||||||
$zip->addFile(realpath($file->absolutePath), $file->relativePath);
|
$zip->addFile(realpath($file->absolutePath), $file->relativePath);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Close zip and remove tmp dir
|
// Close zip and remove tmp dir
|
||||||
$zip->close();
|
$zip->close();
|
||||||
|
|
Loading…
Reference in New Issue