diff options
author | Jörn Friedrich Dreyer <jfd@butonic.de> | 2012-08-31 01:05:36 +0200 |
---|---|---|
committer | Jörn Friedrich Dreyer <jfd@butonic.de> | 2012-08-31 01:11:10 +0200 |
commit | 3ba27e624f2c36044a982bc0cd69f07106e61e96 (patch) | |
tree | 9c67296dd3f101e568fbee006f1ff4da588ebf41 /apps/files_sharing/js/public.js | |
parent | 61a3e5f96b5019f89587e8cead63988f274d140e (diff) | |
download | nextcloud-server-3ba27e624f2c36044a982bc0cd69f07106e61e96.tar.gz nextcloud-server-3ba27e624f2c36044a982bc0cd69f07106e61e96.zip |
unify permissions (2/3): change apps to use OC::PERMISSION_X
Diffstat (limited to 'apps/files_sharing/js/public.js')
-rw-r--r-- | apps/files_sharing/js/public.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/js/public.js b/apps/files_sharing/js/public.js index 1ab61d476ec..92b626bba18 100644 --- a/apps/files_sharing/js/public.js +++ b/apps/files_sharing/js/public.js @@ -10,7 +10,7 @@ $(document).ready(function() { // Show file preview if previewer is available, images are already handled by the template if (mimetype.substr(0, mimetype.indexOf('/')) != 'image') { // Trigger default action if not download TODO - var action = FileActions.getDefault(mimetype, 'file', FileActions.PERMISSION_READ); + var action = FileActions.getDefault(mimetype, 'file', OC.PERMISSION_READ); if (typeof action === 'undefined') { $('#noPreview').show(); } else { |