BUGFIX: Use DIRECTORY_SEPARATOR instead of '/'

namespaces
Frank Ronny Larsen 2013-06-30 15:32:12 +02:00
parent b21d129d2c
commit a34d0ea3e7
1 changed files with 4 additions and 4 deletions

View File

@ -354,7 +354,7 @@ class H5PValidator {
// Ignore this. Probably a file that shouldn't have been included.
continue;
}
$libraryH5PData = $this->getLibraryData($file, $filePath, $tmpDir);
if ($libraryH5PData) {
@ -1017,11 +1017,11 @@ class H5PCore {
@mkdir($destination);
while (false !== ($file = readdir($dir))) {
if (($file != '.') && ($file != '..')) {
if (is_dir($source . '/' . $file)) {
$this->copyTree($source . '/' . $file, $destination . '/' . $file);
if (is_dir($source . DIRECTORY_SEPARATOR . $file)) {
$this->copyTree($source . DIRECTORY_SEPARATOR . $file, $destination . DIRECTORY_SEPARATOR . $file);
}
else {
copy($source . '/' . $file,$destination . '/' . $file);
copy($source . DIRECTORY_SEPARATOR . $file,$destination . DIRECTORY_SEPARATOR . $file);
}
}
}