aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Filestorage.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2016-08-04 10:36:45 +0200
committerMario Vavti <mario@mariovavti.com>2016-08-04 10:36:45 +0200
commit0340160ba71f73ef3dab1141d75f30d85144cc44 (patch)
treebba09795fa6a6b7e240a7c32bb42025253699e94 /Zotlabs/Module/Filestorage.php
parent4ede3fd771ea997cffaa6abab29988a58daf892e (diff)
downloadvolse-hubzilla-0340160ba71f73ef3dab1141d75f30d85144cc44.tar.gz
volse-hubzilla-0340160ba71f73ef3dab1141d75f30d85144cc44.tar.bz2
volse-hubzilla-0340160ba71f73ef3dab1141d75f30d85144cc44.zip
multi acl: port /cloud and /filestorage
Diffstat (limited to 'Zotlabs/Module/Filestorage.php')
-rw-r--r--Zotlabs/Module/Filestorage.php11
1 files changed, 5 insertions, 6 deletions
diff --git a/Zotlabs/Module/Filestorage.php b/Zotlabs/Module/Filestorage.php
index c8ad147bb..a401f4822 100644
--- a/Zotlabs/Module/Filestorage.php
+++ b/Zotlabs/Module/Filestorage.php
@@ -141,7 +141,7 @@ class Filestorage extends \Zotlabs\Web\Controller {
// Encode path that is used for link so it's a valid URL
// Keep slashes as slashes, otherwise mod_rewrite doesn't work correctly
$encoded_path = str_replace('%2F', '/', rawurlencode($cloudpath));
-
+
$o = replace_macros(get_markup_template('attach_edit.tpl'), array(
'$header' => t('Edit file permissions'),
'$file' => $f,
@@ -151,6 +151,10 @@ class Filestorage extends \Zotlabs\Web\Controller {
'$channelnick' => $channel['channel_address'],
'$permissions' => t('Permissions'),
'$aclselect' => $aclselect_e,
+ '$allow_cid' => acl2json($f['allow_cid']),
+ '$allow_gid' => acl2json($f['allow_gid']),
+ '$deny_cid' => acl2json($f['deny_cid']),
+ '$deny_gid' => acl2json($f['deny_gid']),
'$lockstate' => $lockstate,
'$permset' => t('Set/edit permissions'),
'$recurse' => array('recurse', t('Include all files and sub folders'), 0, '', array(t('No'), t('Yes'))),
@@ -162,11 +166,6 @@ class Filestorage extends \Zotlabs\Web\Controller {
'$attach_btn_title' => t('Share this file'),
'$link_btn_title' => t('Show URL to this file'),
'$notify' => array('notify', t('Notify your contacts about this file'), 0, '', array(t('No'), t('Yes'))),
-
- '$allow_cid' => json_encode(expand_acl($f['allow_cid'])),
- '$allow_gid' => json_encode(expand_acl($f['allow_gid'])),
- '$deny_cid' => json_encode(expand_acl($f['deny_cid'])),
- '$deny_cid' => json_encode(expand_acl($f['deny_gid']))
));
echo $o;