Close session for files_trashbin

When restoring huge folders the interface will be unresponsive otherwise
This commit is contained in:
Lukas Reschke 2014-10-29 22:53:59 +01:00
parent 6c4b7db09b
commit 2cd35e94b4
5 changed files with 6 additions and 0 deletions

View File

@ -2,6 +2,8 @@
OCP\JSON::checkLoggedIn();
OCP\JSON::callCheck();
\OC::$server->getSession()->close();
$folder = isset($_POST['dir']) ? $_POST['dir'] : '/';
// "empty trash" command

View File

@ -6,6 +6,7 @@
OCP\JSON::checkLoggedIn();
OCP\JSON::callCheck();
\OC::$server->getSession()->close();
$trashStatus = OCA\Files_Trashbin\Trashbin::isEmpty(OCP\User::getUser());

View File

@ -1,6 +1,7 @@
<?php
OCP\JSON::checkLoggedIn();
\OC::$server->getSession()->close();
// Load the files
$dir = isset( $_GET['dir'] ) ? $_GET['dir'] : '';

View File

@ -6,6 +6,7 @@
* See the COPYING-README file.
*/
\OC_Util::checkLoggedIn();
\OC::$server->getSession()->close();
if(!\OC_App::isEnabled('files_trashbin')){
exit;

View File

@ -2,6 +2,7 @@
OCP\JSON::checkLoggedIn();
OCP\JSON::callCheck();
\OC::$server->getSession()->close();
$files = $_POST['files'];
$dir = '/';