summaryrefslogtreecommitdiffstats
path: root/apps/files_sharing
diff options
context:
space:
mode:
authorMichael Gapczynski <mtgap@owncloud.com>2013-05-01 20:39:02 -0400
committerMichael Gapczynski <mtgap@owncloud.com>2013-05-01 20:39:02 -0400
commit274bf3c6bdb4dc1ccf4f88d485b5bffe85d8a8ea (patch)
treecdad83355e8c7290bbe18ae7b4910b25090cc544 /apps/files_sharing
parentee53e7b3d232d0122e19b685a689a43c52b1a1c0 (diff)
downloadnextcloud-server-274bf3c6bdb4dc1ccf4f88d485b5bffe85d8a8ea.tar.gz
nextcloud-server-274bf3c6bdb4dc1ccf4f88d485b5bffe85d8a8ea.zip
Don't display shared links if disabled
Diffstat (limited to 'apps/files_sharing')
-rw-r--r--apps/files_sharing/public.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/apps/files_sharing/public.php b/apps/files_sharing/public.php
index c8aca498f8c..2b283375a67 100644
--- a/apps/files_sharing/public.php
+++ b/apps/files_sharing/public.php
@@ -3,6 +3,13 @@ $RUNTIME_NOSETUPFS = true;
// Load other apps for file previews
OC_App::loadApps();
+if (\OC_Appconfig::getValue('core', 'shareapi_allow_links', 'yes') !== 'yes') {
+ header('HTTP/1.0 404 Not Found');
+ $tmpl = new OCP\Template('', '404', 'guest');
+ $tmpl->printPage();
+ exit();
+}
+
function fileCmp($a, $b) {
if ($a['type'] == 'dir' and $b['type'] != 'dir') {
return -1;