Merge pull request #7902 from owncloud/ext-xsendfileextstoragefix

Use the correct resolve method to resolve file storage (x-sendfile)
remotes/origin/ldap_group_count
Vincent Petry 11 years ago
commit c9ccacb9ea
  1. 3
      lib/private/files.php

@ -148,8 +148,9 @@ class OC_Files {
set_time_limit($executionTime);
} else {
if ($xsendfile) {
$view = \OC\Files\Filesystem::getView();
/** @var $storage \OC\Files\Storage\Storage */
list($storage) = \OC\Files\Filesystem::resolvePath($filename);
list($storage) = $view->resolvePath($filename);
if ($storage->isLocal()) {
self::addSendfileHeader(\OC\Files\Filesystem::getLocalFile($filename));
} else {

Loading…
Cancel
Save