Replaced another rename function.
parent
e7b7cd2abe
commit
ae8609dd86
|
@ -412,13 +412,13 @@ interface H5PFrameworkInterface {
|
||||||
* Start an atomic operation against the dependency storage
|
* Start an atomic operation against the dependency storage
|
||||||
*/
|
*/
|
||||||
public function lockDependencyStorage();
|
public function lockDependencyStorage();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Stops an atomic operation against the dependency storage
|
* Stops an atomic operation against the dependency storage
|
||||||
*/
|
*/
|
||||||
public function unlockDependencyStorage();
|
public function unlockDependencyStorage();
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Delete a library from database and file system
|
* Delete a library from database and file system
|
||||||
*
|
*
|
||||||
|
@ -1327,7 +1327,8 @@ class H5PStorage {
|
||||||
|
|
||||||
// Move the content folder
|
// Move the content folder
|
||||||
$destination_path = $contents_path . DIRECTORY_SEPARATOR . $contentId;
|
$destination_path = $contents_path . DIRECTORY_SEPARATOR . $contentId;
|
||||||
@rename($current_path, $destination_path);
|
$this->h5pC->copyFileTree($current_path, $destination_path);
|
||||||
|
H5PCore::deleteFileTree($current_path);
|
||||||
|
|
||||||
// Save the content library dependencies
|
// Save the content library dependencies
|
||||||
$this->h5pF->saveLibraryUsage($contentId, $librariesInUse);
|
$this->h5pF->saveLibraryUsage($contentId, $librariesInUse);
|
||||||
|
|
Loading…
Reference in New Issue