Fix SAAS-922 for files on S3 too

This commit is contained in:
Albert Santoni 2015-07-15 17:33:33 -04:00
parent 7ecabffbe8
commit 064e1bd4e0
5 changed files with 8 additions and 8 deletions

View file

@ -38,9 +38,9 @@ class ProxyStorageBackend extends StorageBackend
return $this->storageBackend->getAbsoluteFilePath($resourceId);
}
public function getDownloadURLs($resourceId)
public function getDownloadURLs($resourceId, $contentDispositionFilename)
{
return $this->storageBackend->getDownloadURLs($resourceId);
return $this->storageBackend->getDownloadURLs($resourceId, $contentDispositionFilename);
}
public function deletePhysicalFile($resourceId)