diff options
author | Mario <mario@mariovavti.com> | 2022-05-23 18:56:09 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2022-05-23 18:56:09 +0000 |
commit | e146a67f4b34a067229f008e9f6ddff95da18e67 (patch) | |
tree | a9291e6e75eb99b59d9ff48f64eaec0df01da45c /include/items.php | |
parent | 162d86983a86b9dd3a1af6a10d260658021a1e35 (diff) | |
download | volse-hubzilla-e146a67f4b34a067229f008e9f6ddff95da18e67.tar.gz volse-hubzilla-e146a67f4b34a067229f008e9f6ddff95da18e67.tar.bz2 volse-hubzilla-e146a67f4b34a067229f008e9f6ddff95da18e67.zip |
fix photo permission if a photo description is available and use the filename as default photo description if uploading via the editor
Diffstat (limited to 'include/items.php')
-rw-r--r-- | include/items.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/items.php b/include/items.php index d93b9aaaf..d4c27ab28 100644 --- a/include/items.php +++ b/include/items.php @@ -4831,7 +4831,10 @@ function fix_attached_photo_permissions($uid,$xchan_hash,$body, $match = null; // match img and zmg image links if(preg_match_all("/\[[zi]mg(.*?)\](.*?)\[\/[zi]mg\]/",$body,$match)) { - $images = $match[2]; + + // The URI can be in both places + $images = array_merge($match[1], $match[2]); + if($images) { foreach($images as $image) { if(! stristr($image,z_root() . '/photo/')) @@ -4849,6 +4852,7 @@ function fix_attached_photo_permissions($uid,$xchan_hash,$body, dbesc($image_uri), intval($uid) ); + if($r && $r[0]['folder']) { $f = q("select * from attach where hash = '%s' and is_dir = 1 and uid = %d limit 1", dbesc($r[0]['folder']), |