Super special case where we should copy files instead of mv
This commit is contained in:
parent
3b1181dae6
commit
4360c65ed9
|
@ -188,8 +188,9 @@ class File_thumbnail extends Managed_DataObject
|
||||||
// If we have a file in our old thumbnail storage path, move it to the new one
|
// If we have a file in our old thumbnail storage path, move it to the new one
|
||||||
if (file_exists($oldpath) && !file_exists($thumbpath)) {
|
if (file_exists($oldpath) && !file_exists($thumbpath)) {
|
||||||
if ($this->getFilename() === $this->getFile()->filename) {
|
if ($this->getFilename() === $this->getFile()->filename) {
|
||||||
// special case where thumbnail file exactly matches stored File
|
// special case where thumbnail file exactly matches stored File filename
|
||||||
common_debug('File filename and File_thumbnail filename match on '.$this->file_id);
|
common_debug('File filename and File_thumbnail filename match on '.$this->file_id.', copying instead');
|
||||||
|
copy($oldpath, $thumbpath);
|
||||||
} elseif (!rename($oldpath, $thumbpath)) {
|
} elseif (!rename($oldpath, $thumbpath)) {
|
||||||
common_log(LOG_ERR, 'Could not move thumbnail from '._ve($oldpath).' to '._ve($thumbpath));
|
common_log(LOG_ERR, 'Could not move thumbnail from '._ve($oldpath).' to '._ve($thumbpath));
|
||||||
throw new ServerException('Could not move thumbnail from old path to new path.');
|
throw new ServerException('Could not move thumbnail from old path to new path.');
|
||||||
|
|
Loading…
Reference in New Issue
Block a user