Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2015-02-19 18:35:05 +0300
committerThomas Müller <thomas.mueller@tmit.eu>2015-02-19 18:35:05 +0300
commitdf58eea93fb969a60b6cf4e9fca0fd2173b406a0 (patch)
tree2764bcf03ceede3fe3411a9914487488dddd387e /apps/files/ajax
parent767dd4bde71b708b8ba54665bedb812e40f6e8a3 (diff)
parent3f5d4d82e41e020cc971920a5d90aebcbda7c379 (diff)
Merge pull request #13505 from owncloud/streamline-scanning-code
Streamline auth and CSRF check in scan.php
Diffstat (limited to 'apps/files/ajax')
-rw-r--r--apps/files/ajax/scan.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/files/ajax/scan.php b/apps/files/ajax/scan.php
index f8977c2971e..a85969503ca 100644
--- a/apps/files/ajax/scan.php
+++ b/apps/files/ajax/scan.php
@@ -1,11 +1,15 @@
<?php
set_time_limit(0); //scanning can take ages
+
+\OCP\JSON::checkLoggedIn();
+\OCP\JSON::callCheck();
+
\OC::$server->getSession()->close();
$force = (isset($_GET['force']) and ($_GET['force'] === 'true'));
$dir = isset($_GET['dir']) ? $_GET['dir'] : '';
if (isset($_GET['users'])) {
- OC_JSON::checkAdminUser();
+ \OCP\JSON::checkAdminUser();
if ($_GET['users'] === 'all') {
$users = OC_User::getUsers();
} else {