Added content id.

redesign-copyrights
Frode Petterson 2015-04-07 15:36:28 +02:00
parent 6541faf8ba
commit 5adffcaeb8
1 changed files with 1 additions and 1 deletions

View File

@ -1477,7 +1477,7 @@ Class H5PExport {
public function createExportFile($content) {
$h5pDir = $this->h5pF->getH5pPath() . DIRECTORY_SEPARATOR;
$tempPath = $h5pDir . 'temp' . DIRECTORY_SEPARATOR . $content['id'];
$zipPath = $h5pDir . 'exports' . DIRECTORY_SEPARATOR . $content['slug'] . '.h5p';
$zipPath = $h5pDir . 'exports' . DIRECTORY_SEPARATOR . $content['slug'] . '-' . $content['id'] . '.h5p';
// Temp dir to put the h5p files in
@mkdir($tempPath, 0777, TRUE);