summaryrefslogtreecommitdiffstats
path: root/apps/files/templates
diff options
context:
space:
mode:
authorBjörn Schießle <schiessle@owncloud.com>2013-01-17 13:17:48 +0100
committerBjörn Schießle <schiessle@owncloud.com>2013-01-22 15:33:53 +0100
commit9bacb0e1792fac4a8f9728aec76692fd50fbcd64 (patch)
tree6140f7e8f0b83219f0f22320d380a7bc9b53a603 /apps/files/templates
parentf15deaf55635b730693b1137582c87fcfcaffcf0 (diff)
downloadnextcloud-server-9bacb0e1792fac4a8f9728aec76692fd50fbcd64.tar.gz
nextcloud-server-9bacb0e1792fac4a8f9728aec76692fd50fbcd64.zip
rename "publicListView" option to "disableSharing", this is more meaningful also because it is not only useful for the public list view
Diffstat (limited to 'apps/files/templates')
-rw-r--r--apps/files/templates/part.list.php6
1 files changed, 3 insertions, 3 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>