aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Storage
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2023-11-01 15:38:53 +0000
committerMario <mario@mariovavti.com>2023-11-01 15:38:53 +0000
commit4f334525c2fcb17bee095a02495a025c7bf1a501 (patch)
treebc87331b578da64b590cf4cd390c1091a9b629a7 /Zotlabs/Storage
parent67aaa979049ea2666da1fb313b2b095e27422128 (diff)
downloadvolse-hubzilla-4f334525c2fcb17bee095a02495a025c7bf1a501.tar.gz
volse-hubzilla-4f334525c2fcb17bee095a02495a025c7bf1a501.tar.bz2
volse-hubzilla-4f334525c2fcb17bee095a02495a025c7bf1a501.zip
only show tools to creators if they still have perms
Diffstat (limited to 'Zotlabs/Storage')
-rw-r--r--Zotlabs/Storage/Browser.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Storage/Browser.php b/Zotlabs/Storage/Browser.php
index 590c1cd9c..912b4442d 100644
--- a/Zotlabs/Storage/Browser.php
+++ b/Zotlabs/Storage/Browser.php
@@ -209,7 +209,6 @@ class Browser extends DAV\Browser\Plugin {
// upload access. system.thumbnail_security should be set to 1 if you want to include these
// types
- $is_creator = false;
$photo_icon = '';
$preview_style = intval(get_config('system','thumbnail_security',0));
@@ -369,6 +368,7 @@ class Browser extends DAV\Browser\Plugin {
'$upload' => t('Add Files'),
'$is_owner' => $is_owner,
'$is_admin' => is_site_admin(),
+ '$has_perms' => perm_is_allowed($channel_id, get_observer_hash(), 'write_storage'),
'$admin_delete_label' => t('Admin Delete'),
'$parentpath' => $parent_path,
'$folder_parent' => $folder_parent,