diff options
author | Michael Gapczynski <mtgap@owncloud.com> | 2013-05-22 15:20:15 -0700 |
---|---|---|
committer | Michael Gapczynski <mtgap@owncloud.com> | 2013-05-22 15:20:15 -0700 |
commit | 1cfc9d269e2e384057a2dda91050ab33d2e31628 (patch) | |
tree | a6a2425f3ae82b0e49493ef5a4f470e3cdc29d0c | |
parent | 26732ecaa63f054f76e34b276668310f344ee50b (diff) | |
parent | 9b622bdeedf0f29abb33449da3089a8eaecd7c78 (diff) | |
download | nextcloud-server-1cfc9d269e2e384057a2dda91050ab33d2e31628.tar.gz nextcloud-server-1cfc9d269e2e384057a2dda91050ab33d2e31628.zip |
Merge pull request #3457 from owncloud/fix-share-links
Fix public links
-rw-r--r-- | apps/files_sharing/public.php | 2 | ||||
-rw-r--r-- | cron.php | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/apps/files_sharing/public.php b/apps/files_sharing/public.php index 2b283375a67..59598e35fa2 100644 --- a/apps/files_sharing/public.php +++ b/apps/files_sharing/public.php @@ -1,5 +1,4 @@ <?php -$RUNTIME_NOSETUPFS = true; // Load other apps for file previews OC_App::loadApps(); @@ -46,6 +45,7 @@ if (isset($_GET['t'])) { $fileOwner = $shareOwner; } if (isset($fileOwner)) { + OC_Util::tearDownFS(); OC_Util::setupFS($fileOwner); $path = \OC\Files\Filesystem::getPath($linkItem['file_source']); } @@ -45,7 +45,6 @@ function handleUnexpectedShutdown() { } } -$RUNTIME_NOSETUPFS = true; require_once 'lib/base.php'; session_write_close(); |