Merge pull request #10168 from owncloud/parallel-download-on-public-shared-folder-master

close session right before the download starts - this enables parallel d...
remotes/origin/fix-10825
Morris Jobke 11 years ago
commit c83c90342e
  1. 1
      apps/files_sharing/public.php

@ -100,6 +100,7 @@ if (isset($path)) {
$file = basename($path);
// Download the file
if (isset($_GET['download'])) {
\OC::$server->getSession()->close();
if (isset($_GET['files'])) { // download selected files
$files = urldecode($_GET['files']);
$files_list = json_decode($files);

Loading…
Cancel
Save