diff options
author | Björn Schießle <schiessle@owncloud.com> | 2013-01-17 13:17:48 +0100 |
---|---|---|
committer | Björn Schießle <schiessle@owncloud.com> | 2013-01-17 13:17:48 +0100 |
commit | d5ee4352539f2165eebde5dc983113849b6a1a0c (patch) | |
tree | 74b7c49e6751c8b073f12693ce36718c4a749b6e | |
parent | c494eb79ab049d71113c786375b1ee11338e5edc (diff) | |
download | nextcloud-server-d5ee4352539f2165eebde5dc983113849b6a1a0c.tar.gz nextcloud-server-d5ee4352539f2165eebde5dc983113849b6a1a0c.zip |
rename "publicListView" option to "disableSharing", this is more meaningful also because it is not only useful for the public list view
-rw-r--r-- | apps/files/templates/part.list.php | 6 | ||||
-rw-r--r-- | apps/files_sharing/js/share.js | 2 | ||||
-rw-r--r-- | apps/files_sharing/public.php | 2 | ||||
-rw-r--r-- | apps/files_sharing/templates/public.php | 6 |
4 files changed, 8 insertions, 8 deletions
diff --git a/apps/files/templates/part.list.php b/apps/files/templates/part.list.php index dfac43d1b12..1970a80e1b7 100644 --- a/apps/files/templates/part.list.php +++ b/apps/files/templates/part.list.php @@ -1,8 +1,8 @@ <script type="text/javascript"> -<?php if ( array_key_exists('publicListView', $_) && $_['publicListView'] == true ) :?> - var publicListView = true; +<?php if ( array_key_exists('disableSharing', $_) && $_['disableSharing'] == true ) :?> + var disableSharing = true; <?php else: ?> - var publicListView = false; + var disableSharing = false; <?php endif; ?> </script> diff --git a/apps/files_sharing/js/share.js b/apps/files_sharing/js/share.js index 8a546d62163..59faf82e26e 100644 --- a/apps/files_sharing/js/share.js +++ b/apps/files_sharing/js/share.js @@ -1,6 +1,6 @@ $(document).ready(function() { - if (typeof OC.Share !== 'undefined' && typeof FileActions !== 'undefined' && !publicListView) { + if (typeof OC.Share !== 'undefined' && typeof FileActions !== 'undefined' && !disableSharing) { FileActions.register('all', 'Share', OC.PERMISSION_READ, OC.imagePath('core', 'actions/share'), function(filename) { if ($('#dir').val() == '/') { diff --git a/apps/files_sharing/public.php b/apps/files_sharing/public.php index 487b9e79961..7e1959cd959 100644 --- a/apps/files_sharing/public.php +++ b/apps/files_sharing/public.php @@ -257,7 +257,7 @@ if ($linkItem) { $list = new OCP\Template('files', 'part.list', ''); $list->assign('files', $files, false); - $list->assign('publicListView', true); + $list->assign('disableSharing', true); $list->assign('baseURL', OCP\Util::linkToPublic('files').$urlLinkIdentifiers.'&path=', false); $list->assign('downloadURL', OCP\Util::linkToPublic('files').$urlLinkIdentifiers.'&download&path=', false); $breadcrumbNav = new OCP\Template('files', 'part.breadcrumb', '' ); diff --git a/apps/files_sharing/templates/public.php b/apps/files_sharing/templates/public.php index 647e1e08a31..bfcc521e106 100644 --- a/apps/files_sharing/templates/public.php +++ b/apps/files_sharing/templates/public.php @@ -1,8 +1,8 @@ <script type="text/javascript"> - <?php if ( array_key_exists('publicListView', $_) && $_['publicListView'] == true ) { - echo "var publicListView = true;"; + <?php if ( array_key_exists('disableSharing', $_) && $_['disableSharing'] == true ) { + echo "var disableSharing = true;"; } else { - echo "var publicListView = false;"; + echo "var disableSharing = false;"; } ?> </script> |