Use realpath() instead of document root = safer

Document root might be rewritten or incorrect for some sites(observed on multiple WP)
HFP-784
JI-92-path-fix 1.13.1
Frode Petterson 2017-02-22 11:25:05 +01:00
parent e66e6c5d76
commit bdf60a943d
1 changed files with 1 additions and 5 deletions

View File

@ -1589,15 +1589,11 @@ Class H5PExport {
$zip = new ZipArchive();
$zip->open($tmpFile, ZipArchive::CREATE | ZipArchive::OVERWRITE);
// Some system needs the root prefix for ZipArchive's addFile()
$rootPrefix = (empty($_SERVER['DOCUMENT_ROOT']) ? '' : $_SERVER['DOCUMENT_ROOT'] . '/');
// Add all the files from the tmp dir.
foreach ($files as $file) {
// Please note that the zip format has no concept of folders, we must
// use forward slashes to separate our directories.
$zip->addFile($file->absolutePath, $file->relativePath);
$zip->addFile($rootPrefix . $file->absolutePath, $file->relativePath);
$zip->addFile(realpath($file->absolutePath), $file->relativePath);
}
// Close zip and remove tmp dir