Use correct path.

redesign-copyrights
Frode Petterson 2015-04-22 15:19:01 +02:00
parent 3eea931332
commit ccccec84e7
1 changed files with 2 additions and 2 deletions

View File

@ -1276,7 +1276,7 @@ class H5PStorage {
} }
$content['params'] = file_get_contents($current_path . DIRECTORY_SEPARATOR . 'content.json'); $content['params'] = file_get_contents($current_path . DIRECTORY_SEPARATOR . 'content.json');
if (isset($options['disable'])) { if (isset($options['disable'])) {
$content['disable'] = $options['disable']; $content['disable'] = $options['disable'];
} }
@ -1773,7 +1773,7 @@ class H5PCore {
$content['slug'] = $this->generateContentSlug($content); $content['slug'] = $this->generateContentSlug($content);
// Remove old export file // Remove old export file
$oldExport = $this->h5pF->getH5pPath() . '/exports/' . $content['id'] . '.h5p'; $oldExport = $this->path . '/exports/' . $content['id'] . '.h5p';
if (file_exists($oldExport)) { if (file_exists($oldExport)) {
unlink($oldExport); unlink($oldExport);
} }