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>2014-01-21 13:42:47 +0400
committerThomas Müller <thomas.mueller@tmit.eu>2014-01-21 13:42:47 +0400
commit9fd4cb1b6683cdebdeaec0f744bd2ba1fb1c64e3 (patch)
treef61e617dd3a25922e9a3aa2574f5154c66e54302 /apps/files_sharing/public.php
parent0f794b6889d05508c86449dacdee3e05bd47d071 (diff)
adding password protection check to getShareByToken()
Diffstat (limited to 'apps/files_sharing/public.php')
-rw-r--r--apps/files_sharing/public.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/public.php b/apps/files_sharing/public.php
index d050efd5b32..100379047d3 100644
--- a/apps/files_sharing/public.php
+++ b/apps/files_sharing/public.php
@@ -35,7 +35,7 @@ function determineIcon($file, $sharingRoot, $sharingToken) {
if (isset($_GET['t'])) {
$token = $_GET['t'];
- $linkItem = OCP\Share::getShareByToken($token);
+ $linkItem = OCP\Share::getShareByToken($token, false);
if (is_array($linkItem) && isset($linkItem['uid_owner'])) {
// seems to be a valid share
$type = $linkItem['item_type'];