diff options
author | zotlabs <mike@macgirvin.com> | 2018-05-02 20:08:59 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-05-02 20:08:59 -0700 |
commit | e9f49d9d9c02ef6b2f5259f9a323a8a2a2d75af5 (patch) | |
tree | 3ad27aa2fdc900ee9ccca7f96d7701eea8e9d80a /Zotlabs/Storage | |
parent | 9713436f497a031e4369130dda40b415ff285fd8 (diff) | |
download | volse-hubzilla-e9f49d9d9c02ef6b2f5259f9a323a8a2a2d75af5.tar.gz volse-hubzilla-e9f49d9d9c02ef6b2f5259f9a323a8a2a2d75af5.tar.bz2 volse-hubzilla-e9f49d9d9c02ef6b2f5259f9a323a8a2a2d75af5.zip |
admin delete of files
Diffstat (limited to 'Zotlabs/Storage')
-rw-r--r-- | Zotlabs/Storage/Browser.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Zotlabs/Storage/Browser.php b/Zotlabs/Storage/Browser.php index 508c39d22..f4f906ad1 100644 --- a/Zotlabs/Storage/Browser.php +++ b/Zotlabs/Storage/Browser.php @@ -241,7 +241,7 @@ class Browser extends DAV\Browser\Plugin { // put the array for this file together $ft['attachId'] = $this->findAttachIdByHash($attachHash); - $ft['fileStorageUrl'] = substr($fullPath, 0, strpos($fullPath, "cloud/")) . "filestorage/" . $this->auth->getCurrentUser(); + $ft['fileStorageUrl'] = substr($fullPath, 0, strpos($fullPath, "cloud/")) . "filestorage/" . $this->auth->owner_nick; $ft['icon'] = $icon; $ft['photo_icon'] = $photo_icon; $ft['attachIcon'] = (($size) ? $attachIcon : ''); @@ -276,6 +276,8 @@ class Browser extends DAV\Browser\Plugin { '$create' => t('Create'), '$upload' => t('Add Files'), '$is_owner' => $is_owner, + '$is_admin' => is_site_admin(), + '$admin_delete' => t('Admin Delete'), '$parentpath' => $parentpath, '$cpath' => bin2hex(\App::$query_string), '$tiles' => intval($_SESSION['cloud_tiles']), |