aboutsummaryrefslogtreecommitdiffstats
path: root/include/attach.php
diff options
context:
space:
mode:
authorredmatrix <redmatrix@redmatrix.me>2015-09-18 01:53:04 -0700
committerredmatrix <redmatrix@redmatrix.me>2015-09-18 01:53:04 -0700
commitf2fefb91d5f823385105fe693d0d82d7e236b511 (patch)
treeb875fdb1c49406558de6c30efeee5638f7e3edc8 /include/attach.php
parentcc95c3e9c81a11d96b6670180f53490ec30e0324 (diff)
downloadvolse-hubzilla-f2fefb91d5f823385105fe693d0d82d7e236b511.tar.gz
volse-hubzilla-f2fefb91d5f823385105fe693d0d82d7e236b511.tar.bz2
volse-hubzilla-f2fefb91d5f823385105fe693d0d82d7e236b511.zip
change photo permissions when attach permissions are changed through mod/filestorage, and fix lockview for photos.
Diffstat (limited to 'include/attach.php')
-rw-r--r--include/attach.php12
1 files changed, 11 insertions, 1 deletions
diff --git a/include/attach.php b/include/attach.php
index 513486bfc..39fdb5c3a 100644
--- a/include/attach.php
+++ b/include/attach.php
@@ -1132,7 +1132,7 @@ function attach_mkdirp($channel, $observer_hash, $arr = null) {
*/
function attach_change_permissions($channel_id, $resource, $allow_cid, $allow_gid, $deny_cid, $deny_gid, $recurse = false) {
- $r = q("select hash, flags, is_dir from attach where hash = '%s' and uid = %d limit 1",
+ $r = q("select hash, flags, is_dir, is_photo from attach where hash = '%s' and uid = %d limit 1",
dbesc($resource),
intval($channel_id)
);
@@ -1162,6 +1162,16 @@ function attach_change_permissions($channel_id, $resource, $allow_cid, $allow_gi
dbesc($resource),
intval($channel_id)
);
+ if($r[0]['is_photo']) {
+ $x = q("update photo set allow_cid = '%s', allow_gid = '%s', deny_cid = '%s', deny_gid = '%s' where resource_id = '%s' and uid = %d",
+ dbesc($allow_cid),
+ dbesc($allow_gid),
+ dbesc($deny_cid),
+ dbesc($deny_gid),
+ dbesc($resource),
+ intval($channel_id)
+ );
+ }
}
/**